]> pd.if.org Git - pdclib/blobdiff - includes/stdlib.h
Bug #11 - memswp() in qsort() not type correct. Fixed.
[pdclib] / includes / stdlib.h
index 026a82a5020cc7ea97b53bd2234619e99a8aeafe..06eb9ce628335167c48184ee89fabda72df9d140 100644 (file)
@@ -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 ) );