X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstring%2Fstrtok.c;h=35087902d66ac7c413c6b0bfd1d7446b5b68afef;hp=1ba221cb4e6a3266e5f0899da179303c113e5a14;hb=2bf469310de6793228c103691859ed4d3158b117;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 diff --git a/src/string/strtok.c b/src/string/strtok.c index 1ba221cb..35087902 100644 --- a/src/string/strtok.c +++ b/src/string/strtok.c @@ -1,6 +1,6 @@ #include -char *strtok(char *s, const char *sep) +char *strtok(char *restrict s, const char *restrict sep) { static char *p; if (!s && !(s = p)) return NULL;