X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstdlib.h;h=06eb9ce628335167c48184ee89fabda72df9d140;hb=b42a534f135f12fe47a6bc343bb6cc2c0e973198;hp=026a82a5020cc7ea97b53bd2234619e99a8aeafe;hpb=86e4dc0d4ab2712609d45a05d35a2dbe0aa6e37a;p=pdclib.old 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 ) );