mescc: Mes C Library: Support gcc-4.6.4: atexit: return 0.

* lib/stdlib/atexit.c (atexit): return 0.
This commit is contained in:
Jan Nieuwenhuizen 2019-02-08 13:29:30 +01:00
parent 4730386dc1
commit ce8debec54
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;
}