X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Fstdlib.h;h=06eb9ce628335167c48184ee89fabda72df9d140;hp=026a82a5020cc7ea97b53bd2234619e99a8aeafe;hb=f8dfae46eb161173a4460a98075669e810c8bb7b;hpb=5bf06fe94c113d389ff58afbc7e94d836e18db08 diff --git a/includes/stdlib.h b/includes/stdlib.h index 026a82a..06eb9ce 100644 --- a/includes/stdlib.h +++ b/includes/stdlib.h @@ -140,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 ) );