X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstring%2Fstrncat.c;h=ba20edc14b46ae32207e50ce3e7b3a44a8ea35c7;hp=18d8ed596e9fc0cd20b872f90f99200d2a68b6bb;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hpb=2040228f27d623585d339dec175c4e779ca9edb5 diff --git a/functions/string/strncat.c b/functions/string/strncat.c index 18d8ed5..ba20edc 100644 --- a/functions/string/strncat.c +++ b/functions/string/strncat.c @@ -29,6 +29,7 @@ char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void ) @@ -55,4 +56,5 @@ int main( void ) TESTCASE( s[8] == '\0' ); return TEST_RESULTS; } + #endif