From 0ab513b254dff48b7d93d7b67f76558ef2578cdd Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 30 Nov 2004 20:17:44 +0000 Subject: [PATCH] Use register to improve the code git-svn-id: svn://svn.cc65.org/cc65/trunk@3319 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/strtok.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } - +