X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Frealloc.c;h=c1ba38f4d1cd2b674aa0ae5013ff0ebf54070379;hb=d9dcf16664c81809258992e1653ecb68c8079974;hp=90214e0ccc2ac877feed6e113c57f61a0d06a988;hpb=7325dfda3e33fd4a3fcd5f925446cebd68b1a53d;p=pdclib.old 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; }