summaryrefslogtreecommitdiff
path: root/string/strchrnul.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strchrnul.c')
-rw-r--r--string/strchrnul.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/string/strchrnul.c b/string/strchrnul.c
index daf0b3f659..e084f5d316 100644
--- a/string/strchrnul.c
+++ b/string/strchrnul.c
@@ -33,9 +33,7 @@
/* Find the first occurrence of C in S or the final NUL byte. */
char *
-STRCHRNUL (s, c_in)
- const char *s;
- int c_in;
+STRCHRNUL (const char *s, int c_in)
{
const unsigned char *char_ptr;
const unsigned long int *longword_ptr;