X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdlib%2Frealloc.c;h=c1ba38f4d1cd2b674aa0ae5013ff0ebf54070379;hb=dd3dfcc3689617d8547d2c2ef5f87fc8c951763a;hp=90214e0ccc2ac877feed6e113c57f61a0d06a988;hpb=1defdc727284530a7ad98316ffb90536d636f711;p=fw%2Fpdclib diff --git a/functions/stdlib/realloc.c b/functions/stdlib/realloc.c index 90214e0..c1ba38f 100644 --- a/functions/stdlib/realloc.c +++ b/functions/stdlib/realloc.c @@ -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; }