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