X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrpbrk.c;h=e95f0c1776478033fe9ad400464925986fb92081;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=41211dbd55970a8b09a898490065ac3e9b6a114c;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/strpbrk.c b/functions/string/strpbrk.c index 41211db..e95f0c1 100644 --- a/functions/string/strpbrk.c +++ b/functions/string/strpbrk.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strpbrk( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -32,7 +30,8 @@ char * strpbrk( const char * s1, const char * s2 ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -46,4 +45,5 @@ int main( void ) TESTCASE( strpbrk( abcde, "cba" ) == &abcde[0] ); return TEST_RESULTS; } + #endif