summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/strsep.c')
-rw-r--r--lib/libc/string/strsep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/string/strsep.c b/lib/libc/string/strsep.c
index 5e9fa9f..dd5ec0b 100644
--- a/lib/libc/string/strsep.c
+++ b/lib/libc/string/strsep.c
@@ -53,12 +53,12 @@ __FBSDID("$FreeBSD$");
*/
char *
strsep(stringp, delim)
- register char **stringp;
- register const char *delim;
+ 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)
OpenPOWER on IntegriCloud