X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncat.c;h=f05a9ec7239cf19cf53c14c5ef1a78e0c5d028b3;hb=3fd192582e2b47d2f4a0d13238a054dfe59f4799;hp=7fdaa2670eff250cba6bc045723320d844667f71;hpb=8f2e7cffffecca3d7c937be102fcf9d5ec17241c;p=pdclib.old diff --git a/functions/string/strncat.c b/functions/string/strncat.c index 7fdaa26..f05a9ec 100644 --- a/functions/string/strncat.c +++ b/functions/string/strncat.c @@ -8,9 +8,10 @@ Permission is granted to use, modify, and / or redistribute at will. */ -#include <_PDCLIB_aux.h> #include +#ifndef REGTEST + char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) { char * rc = s1; @@ -29,6 +30,8 @@ char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si return rc; } +#endif + #ifdef TEST #include <_PDCLIB_test.h>