X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=e1f34a7f8558b83734b0ce8cb967c809120de74e;hb=b533867fc9062c9f88f94a1de99ef78c6b7e91a1;hp=31602ec8a9fef4709ce87b2904c821fb6256d2f4;hpb=1a0d9f7faca36f149db3b85c09a72528e0c73a83;p=pdclib diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index 31602ec..e1f34a7 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -8,9 +8,10 @@ Permission is granted to use, modify, and / or redistribute at will. */ -#include <_PDCLIB_aux.h> #include +#ifndef REGTEST + char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) { char * rc = s1; @@ -28,6 +29,8 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si return rc; } +#endif + #ifdef TEST #include <_PDCLIB_test.h>