diff --git a/libsrc/common/strtok.c b/libsrc/common/strtok.c index d3f8b56f4..5d9295711 100644 --- a/libsrc/common/strtok.c +++ b/libsrc/common/strtok.c @@ -27,7 +27,7 @@ static char* Last = 0; -char* strtok (char* s1, const char* s2) +char* strtok (register char* s1, const char* s2) { char c; char* start; @@ -72,6 +72,6 @@ char* strtok (char* s1, const char* s2) /* Return the start of the token */ return start; } - +