]> pd.if.org Git - pdclib/blobdiff - functions/string/memcmp.c
Whitespace cleanups.
[pdclib] / functions / string / memcmp.c
index cb1db581d15fec92093c15ef1cc26da5d9b0f3bc..3743f781d9b6d9341a17f782f550b0bff469c12f 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* memcmp( const void *, const void *, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -29,7 +27,8 @@ int memcmp( const void * s1, const void * s2, size_t n )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -40,4 +39,5 @@ int main( void )
     TESTCASE( memcmp( xxxxx, abcde, 1 ) > 0 );
     return 0;
 }
+
 #endif