]> pd.if.org Git - pdclib/blobdiff - functions/string/strcpy.c
Whitespace cleanups.
[pdclib] / functions / string / strcpy.c
index 8276dd745aecebc4b525fabb0ba86641b66e7594..e0357c89c94861521ed622c4a0e6bbb3fc15f2c3 100644 (file)
@@ -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