From: cuz Date: Tue, 30 Nov 2004 20:17:44 +0000 (+0000) Subject: Use register to improve the code X-Git-Tag: V2.12.0~517 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0ab513b254dff48b7d93d7b67f76558ef2578cdd;p=cc65 Use register to improve the code git-svn-id: svn://svn.cc65.org/cc65/trunk@3319 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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; } - +