X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrerror.c;h=59747f1d8491dc48b934dc398c2968d9f7f75500;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=b0ced5dba5d308ba904276973f32c53575004009;hpb=ce0e5d8cd76b50f239fb8e95170502b146247b35;p=pdclib diff --git a/functions/string/strerror.c b/functions/string/strerror.c index b0ced5d..59747f1 100644 --- a/functions/string/strerror.c +++ b/functions/string/strerror.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strerror( int ) This file is part of the Public Domain C Library (PDCLib). @@ -28,7 +26,8 @@ char * strerror( int errnum ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" #include #include @@ -38,4 +37,5 @@ int main( void ) TESTCASE( strerror( ERANGE ) != strerror( EDOM ) ); return TEST_RESULTS; } + #endif