]> pd.if.org Git - pdclib/blobdiff - functions/string/strncmp.c
Whitespace cleanups.
[pdclib] / functions / string / strncmp.c
index 43321709ee515a0d4fcc1380b0bf2b8e0d250d26..1e9119dbd56ec0d70888a681a257452bad549e4d 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strncmp( const char *, const char *, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -31,7 +29,8 @@ int strncmp( const char * s1, const char * s2, size_t n )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -51,4 +50,5 @@ int main( void )
     TESTCASE( strncmp( abcde, cmpabcd_, 10 ) < 0 );
     return TEST_RESULTS;
 }
+
 #endif