]> pd.if.org Git - pdclib/blobdiff - functions/string/strncpy.c
Whitespace cleanups.
[pdclib] / functions / string / strncpy.c
index efb6480468391a0bf35fae0e8001bee7d0d5c1d9..da1397a93caaf2a7a1b6b3ebf5499f941f1f8236 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strncpy( char *, const char *, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -32,7 +30,8 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -53,4 +52,5 @@ int main( void )
     TESTCASE( s[3] == 'd' );
     return TEST_RESULTS;
 }
+
 #endif