X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcpy.c;h=e0357c89c94861521ed622c4a0e6bbb3fc15f2c3;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=8276dd745aecebc4b525fabb0ba86641b66e7594;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/string/strcpy.c b/functions/string/strcpy.c index 8276dd7..e0357c8 100644 --- a/functions/string/strcpy.c +++ b/functions/string/strcpy.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* strcpy( char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -22,7 +18,8 @@ char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -36,4 +33,5 @@ int main( void ) TESTCASE( s[5] == '\0' ); return TEST_RESULTS; } + #endif