]> 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 d3f8b56f4246b9e005370a464c386319bbed2526..3e5ff7dd58463d890b54c873890680243f00378b 100644 (file)
@@ -27,7 +27,7 @@ static char* Last = 0;
 
 
 
-char* strtok (char* s1, const char* s2)
+char* __fastcall__ strtok (register char* s1, const char* s2)
 {
     char c;
     char* start;