]> pd.if.org Git - pdclib/blobdiff - functions/string/strncat.c
Whitespace cleanups.
[pdclib] / functions / string / strncat.c
index 14f6af3f3dc1145c8d8b954d2505177a9e77eb6f..ba20edc14b46ae32207e50ce3e7b3a44a8ea35c7 100644 (file)
@@ -29,7 +29,8 @@ char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -55,4 +56,5 @@ int main( void )
     TESTCASE( s[8] == '\0' );
     return TEST_RESULTS;
 }
+
 #endif