X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcoll.c;h=6b012b7a29a451a5542032d16979ecb652d79baf;hb=689f876fb2420ed2ce45aca58dc39f05e1eb5c2d;hp=16a5680b610c14ea5aaf078f60ced375095753b8;hpb=c3a9288707c2071ac38666bb23e1face3d2efa0c;p=pdclib diff --git a/functions/string/strcoll.c b/functions/string/strcoll.c index 16a5680..6b012b7 100644 --- a/functions/string/strcoll.c +++ b/functions/string/strcoll.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strcoll( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -25,7 +23,8 @@ int strcoll( 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, empty ) > 0 ); return TEST_RESULTS; } + #endif