X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=621100e04828860d931194276520020469f3168c;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=5f8db573773410349c8fd16eb5b812254bef0eb6;hpb=b1fc26afebd4d557ff89a44bc21767a8704c3809;p=pdclib diff --git a/functions/string/strchr.c b/functions/string/strchr.c index 5f8db57..621100e 100644 --- a/functions/string/strchr.c +++ b/functions/string/strchr.c @@ -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