Module Name: src
Committed By: pgoyette
Date: Sat Jul 18 04:34:32 UTC 2009
Modified Files:
src/regress/lib/libc/string/strchr: strchr_test.c
Log Message:
We can try to trick the compiler, but at least we need to let it
compile! (Hello, dsl!)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/regress/lib/libc/string/strchr/strchr_test.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/regress/lib/libc/string/strchr/strchr_test.c
diff -u src/regress/lib/libc/string/strchr/strchr_test.c:1.2 src/regress/lib/libc/string/strchr/strchr_test.c:1.3
--- src/regress/lib/libc/string/strchr/strchr_test.c:1.2 Fri Jul 17 22:07:36 2009
+++ src/regress/lib/libc/string/strchr/strchr_test.c Sat Jul 18 04:34:32 2009
@@ -33,7 +33,7 @@
void check_strchr(void);
/* try to trick the compiler */
-char * (*volatile f)((const char *, int);
+char * (*volatile f)(const char *, int);
void
check_strchr(void)