svn commit: trunk/uClibc/libc/string/generic

psm at uclibc.org psm at uclibc.org
Tue Dec 6 14:49:18 UTC 2005


Author: psm
Date: 2005-12-06 06:48:31 -0800 (Tue, 06 Dec 2005)
New Revision: 12702

Log:
Correct syntax now...

Modified:
   trunk/uClibc/libc/string/generic/strtok_r.c


Changeset:
Modified: trunk/uClibc/libc/string/generic/strtok_r.c
===================================================================
--- trunk/uClibc/libc/string/generic/strtok_r.c	2005-12-06 14:46:53 UTC (rev 12701)
+++ trunk/uClibc/libc/string/generic/strtok_r.c	2005-12-06 14:48:31 UTC (rev 12702)
@@ -36,10 +36,7 @@
 	x = strtok_r(NULL, "=", &sp);	// x = NULL
 		// s = "abc\0-def\0"
 */
-char attribute_hidden *__strtok_r (s, delim, save_ptr)
-     char *s;
-     const char *delim;
-     char **save_ptr;
+char attribute_hidden *__strtok_r (char *s, const char *delim, char **save_ptr)
 {
   char *token;
 




More information about the uClibc-cvs mailing list