X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=da1397a93caaf2a7a1b6b3ebf5499f941f1f8236;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=5868e7f36509ab20b95360af383b6bbb269dc4a1;hpb=b1fc26afebd4d557ff89a44bc21767a8704c3809;p=pdclib diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index 5868e7f..da1397a 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -30,7 +30,8 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -51,4 +52,5 @@ int main( void ) TESTCASE( s[3] == 'd' ); return TEST_RESULTS; } + #endif