libroot: Appease GCC2 for strtok_r.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include <string.h>
|
||||
|
||||
char *strtok_r(char *restrict s, const char *restrict sep, char **restrict p)
|
||||
char *strtok_r(char *s, const char *sep, char **p)
|
||||
{
|
||||
if (!s && !(s = *p)) return NULL;
|
||||
s += strspn(s, sep);
|
||||
|
||||
Reference in New Issue
Block a user