1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 01:29:37 +00:00

Use register to improve the code

git-svn-id: svn://svn.cc65.org/cc65/trunk@3319 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-11-30 20:17:44 +00:00
parent 08074a2ee3
commit 0ab513b254

View File

@ -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;