]> pd.if.org Git - pdclib/blobdiff - functions/string/strchr.c
Whitespace cleanups.
[pdclib] / functions / string / strchr.c
index 5f8db573773410349c8fd16eb5b812254bef0eb6..621100e04828860d931194276520020469f3168c 100644 (file)
@@ -23,7 +23,8 @@ char * strchr( const char * s, int c )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -35,4 +36,5 @@ int main( void )
     TESTCASE( strchr( abccd, 'c' ) == &abccd[2] );
     return TEST_RESULTS;
 }
+
 #endif