Ayuda en error 021 - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Ayuda en error 021 (
/showthread.php?tid=603967)
Ayuda en error 021 -
Manuelsamp - 29.03.2016
Hola,
Al compilar un GM, me emite este error:
error 021: symbol already defined: "strtok"
Код:
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
їAlguna idea o guнa? A lo mejor tengo que meter un .inc en la carpeta, o algo...
Gracias de antemano.
Respuesta: Ayuda en error 021 -
OTACON - 29.03.2016
eliminalo, es por que ya lo tienes definido, tal vez en algun include.
saludos.
Respuesta: Ayuda en error 021 -
Manuelsamp - 29.03.2016
Si, me he dado cuenta que borrando el #include <dudb> se me soluciona.
Gracias OTACON