X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstdlib.h;h=06eb9ce628335167c48184ee89fabda72df9d140;hb=eb9211f1090ef05e8490a6b35acbe16c9ed9f89a;hp=1bf1fc26872df4cbec70405f5aac9e3e95b8dc9a;hpb=12e17136786afb1775c9dc946cbe41f5e230c24a;p=pdclib.old diff --git a/includes/stdlib.h b/includes/stdlib.h index 1bf1fc2..06eb9ce 100644 --- a/includes/stdlib.h +++ b/includes/stdlib.h @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* General utilities This file is part of the Public Domain C Library (PDCLib). @@ -142,9 +140,9 @@ void * realloc( void * ptr, size_t size ); */ void abort( void ); -/* Register a function that will be called on exit(), _Exit(), or when main() - returns. At least 32 functions can be registered this way, and will be - called in reverse order of registration (last-in, first-out). +/* Register a function that will be called on exit(), or when main() returns. + At least 32 functions can be registered this way, and will be called in + reverse order of registration (last-in, first-out). Returns zero if registration is successfull, nonzero if it failed. */ int atexit( void (*func)( void ) );