X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcmp.c;h=639fc10259c24a6bd3eec3d24b59ec0e4420c203;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=5202771a67d52f266000746cf63c7608cd9b7682;hpb=393020b6e48719d27699dea6b29e53025bbd5123;p=pdclib diff --git a/functions/string/strcmp.c b/functions/string/strcmp.c index 5202771..639fc10 100644 --- a/functions/string/strcmp.c +++ b/functions/string/strcmp.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strcmp( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -23,7 +21,8 @@ int strcmp( const char * s1, const char * s2 ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -38,4 +37,5 @@ int main( void ) TESTCASE( strcmp( abcde, cmpabcd_ ) < 0 ); return TEST_RESULTS; } + #endif