]> pd.if.org Git - pdclib/blobdiff - functions/string/memmove.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / string / memmove.c
index 7a01996b3aceea9dec863bb7a836262d88670783..f83a1abedec2b59ba7660b4d7addfb66082e7ff6 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* memmove( void *, const void *, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -38,12 +34,11 @@ void * memmove( void * s1, const void * s2, size_t n )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
-int main()
+int main( void )
 {
     char s[] = "xxxxabcde";
-    BEGIN_TESTS;
     TESTCASE( memmove( s, s + 4, 5 ) == s );
     TESTCASE( s[0] == 'a' );
     TESTCASE( s[4] == 'e' );