]> pd.if.org Git - pdclib/blobdiff - functions/string/strcpy.c
Whitespace cleanups.
[pdclib] / functions / string / strcpy.c
index 68722feaf4e8b18eda8b84a5e88051ef777dd775..e0357c89c94861521ed622c4a0e6bbb3fc15f2c3 100644 (file)
@@ -18,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 )
 {
@@ -32,4 +33,5 @@ int main( void )
     TESTCASE( s[5] == '\0' );
     return TEST_RESULTS;
 }
+
 #endif