libroot: Appease GCC2 for strtok_r.

This commit is contained in:
Augustin Cavalier
2026-01-07 18:23:43 -05:00
parent da0529e546
commit 04ebf3d669
@@ -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);