]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/strtok.c
The IRQ handler needs to save the registers. By Stefan Haubenthal.
[cc65] / libsrc / common / strtok.c
index 5d92957113ea09061a73248d0c6b3f7141a6b255..3e5ff7dd58463d890b54c873890680243f00378b 100644 (file)
@@ -27,7 +27,7 @@ static char* Last = 0;
 
 
 
-char* strtok (register char* s1, const char* s2)
+char* __fastcall__ strtok (register char* s1, const char* s2)
 {
     char c;
     char* start;
@@ -72,6 +72,6 @@ char* strtok (register char* s1, const char* s2)
     /* Return the start of the token */
     return start;
 }
-                                 
+