]> pd.if.org Git - pdclib.old/blobdiff - functions/stdlib/realloc.c
Removed the $Name$ tags (not supported by SVN). Added $Id$ to Makefile / text files.
[pdclib.old] / functions / stdlib / realloc.c
index 90214e0ccc2ac877feed6e113c57f61a0d06a988..c1ba38f4d1cd2b674aa0ae5013ff0ebf54070379 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* void * realloc( void *, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -44,9 +42,8 @@ void * realloc( void * ptr, size_t size )
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* tests covered in malloc test driver */
     return TEST_RESULTS;
 }