X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcat.c;h=d9609157ffc77f048a63eb07054630589210c3a0;hb=b335b04edfdff582f5792a57cb9cea8c89584590;hp=d1135756069099dad2a478e9a55a19f65951750b;hpb=8f2e7cffffecca3d7c937be102fcf9d5ec17241c;p=pdclib.old diff --git a/functions/string/strcat.c b/functions/string/strcat.c index d113575..d960915 100644 --- a/functions/string/strcat.c +++ b/functions/string/strcat.c @@ -9,6 +9,9 @@ */ #include <_PDCLIB_aux.h> +#include + +#ifndef REGTEST char * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 ) { @@ -21,6 +24,8 @@ char * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 ) return rc; } +#endif + #ifdef TEST #include <_PDCLIB_test.h>