X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcpy.c;h=e0357c89c94861521ed622c4a0e6bbb3fc15f2c3;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=1fd3d32b9357c7d7265a0b1ad094e788e6accfea;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/strcpy.c b/functions/string/strcpy.c index 1fd3d32..e0357c8 100644 --- a/functions/string/strcpy.c +++ b/functions/string/strcpy.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strcpy( char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -20,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 ) { @@ -34,4 +33,5 @@ int main( void ) TESTCASE( s[5] == '\0' ); return TEST_RESULTS; } + #endif