X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncat.c;h=ba20edc14b46ae32207e50ce3e7b3a44a8ea35c7;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=eb059b28339e46119f1b4b9fd9ed1552d90b0307;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/string/strncat.c b/functions/string/strncat.c index eb059b2..ba20edc 100644 --- a/functions/string/strncat.c +++ b/functions/string/strncat.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* strncat( char *, const char *, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -33,7 +29,8 @@ char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -59,4 +56,5 @@ int main( void ) TESTCASE( s[8] == '\0' ); return TEST_RESULTS; } + #endif