X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;ds=sidebyside;f=functions%2Fstring%2Fstrcat.c;h=e76b7db6fb34ee2033faba74e936058ffcfeb79f;hb=b533867fc9062c9f88f94a1de99ef78c6b7e91a1;hp=d1135756069099dad2a478e9a55a19f65951750b;hpb=2f57d79a5a24856fdea69b2119d67e5fb5029b3e;p=pdclib diff --git a/functions/string/strcat.c b/functions/string/strcat.c index d113575..e76b7db 100644 --- a/functions/string/strcat.c +++ b/functions/string/strcat.c @@ -8,7 +8,9 @@ Permission is granted to use, modify, and / or redistribute at will. */ -#include <_PDCLIB_aux.h> +#include + +#ifndef REGTEST char * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 ) { @@ -21,6 +23,8 @@ char * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 ) return rc; } +#endif + #ifdef TEST #include <_PDCLIB_test.h>