]> pd.if.org Git - pdclib/blobdiff - functions/string/memcpy.c
Whitespace cleanups.
[pdclib] / functions / string / memcpy.c
index ded60b1901282c59f460a9c110737495e050d053..21ef10e45933491a2e79b3ceda12adbcb8a2241f 100644 (file)
@@ -22,6 +22,7 @@ void * memcpy( void * _PDCLIB_restrict s1, const void * _PDCLIB_restrict s2, siz
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -35,4 +36,5 @@ int main( void )
     TESTCASE( s[10] == 'x' );
     return TEST_RESULTS;
 }
+
 #endif