X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemchr.c;h=29598a729a92628bf5213835f9da4235999a9c23;hb=761281caf431d264d568aec797095ef2c28f3910;hp=f2add9dcdeccf04b2be0fa7f5a1706273d6ef2c3;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/memchr.c b/functions/string/memchr.c index f2add9d..29598a7 100644 --- a/functions/string/memchr.c +++ b/functions/string/memchr.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* memchr( const void *, int, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -27,7 +25,8 @@ void * memchr( const void * s, int c, size_t n ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -38,4 +37,5 @@ int main( void ) TESTCASE( memchr( abcde, '\0', 6 ) == &abcde[5] ); return TEST_RESULTS; } + #endif