]> pd.if.org Git - pdclib/blobdiff - functions/string/strcpy.c
Whitespace cleanups.
[pdclib] / functions / string / strcpy.c
index d66cbaba5edb230b5ae4d6346c7f47080db402fd..e0357c89c94861521ed622c4a0e6bbb3fc15f2c3 100644 (file)
@@ -18,6 +18,7 @@ char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -32,4 +33,5 @@ int main( void )
     TESTCASE( s[5] == '\0' );
     return TEST_RESULTS;
 }
+
 #endif