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