lib: atexit: Support gcc-4.6.4: return 0.

* lib/stdlib/atexit.c (atexit): return 0.
This commit is contained in:
Jan Nieuwenhuizen 2019-02-08 13:29:30 +01:00 committed by Jan (janneke) Nieuwenhuizen
parent 26cb792ed9
commit 8445e7840d
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 1 additions and 0 deletions

View File

@ -25,4 +25,5 @@ int
atexit (void (*function) (void))
{
__call_at_exit = function;
return 0;
}