X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcat.c;h=d9609157ffc77f048a63eb07054630589210c3a0;hb=0e0c0fbd57380a25f109e876516a22d5e19cbc2c;hp=d1135756069099dad2a478e9a55a19f65951750b;hpb=2f57d79a5a24856fdea69b2119d67e5fb5029b3e;p=pdclib 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>