X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/f5fe14663d9ed32b7a995ed0924c04e705f74237..a63600a1fc28dbc7ae7ce9f996829c49a25fb33c:/missing/strsep.c diff --git a/missing/strsep.c b/missing/strsep.c index 2c17275f..05f10bcc 100644 --- a/missing/strsep.c +++ b/missing/strsep.c @@ -55,9 +55,9 @@ char * strsep(char **stringp, const char *delim) { - register char *s; - register const char *spanp; - register int c, sc; + char *s; + const char *spanp; + int c, sc; char *tok; if ((s = *stringp) == NULL)