diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 18:49:23 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 18:49:23 +0000 |
| commit | 8fb3f3f68288ae2b1b53dd65e3dd673d83c80f4c (patch) | |
| tree | 12b252b7426e8a8904ef257bea10fea6038142f4 /lib/libc/string/strcspn.c | |
| parent | ddf23aa842f17afcb0e9bfd88bfad20f6431d0a3 (diff) | |
Notes
Diffstat (limited to 'lib/libc/string/strcspn.c')
| -rw-r--r-- | lib/libc/string/strcspn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/strcspn.c b/lib/libc/string/strcspn.c index d4dac4dcd730..2ec9326d9b54 100644 --- a/lib/libc/string/strcspn.c +++ b/lib/libc/string/strcspn.c @@ -48,10 +48,10 @@ __FBSDID("$FreeBSD$"); size_t strcspn(s1, s2) const char *s1; - register const char *s2; + const char *s2; { - register const char *p, *spanp; - register char c, sc; + const char *p, *spanp; + char c, sc; /* * Stop as soon as we find any character from s2. Note that there |
