about summary refs log tree commit diff
path: root/string/strtok.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strtok.c')
-rw-r--r--string/strtok.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/string/strtok.c b/string/strtok.c
index 225344003e..924313e878 100644
--- a/string/strtok.c
+++ b/string/strtok.c
@@ -36,9 +36,7 @@ static char *olds;
 		// s = "abc\0=-def\0"
 */
 char *
-STRTOK (s, delim)
-     char *s;
-     const char *delim;
+STRTOK (char *s, const char *delim)
 {
   char *token;