add c11 quick_exit and at_quick_exit functions

This commit is contained in:
Rich Felker
2012-08-25 22:49:47 -04:00
parent a5d6199d09
commit b5289fd749
3 changed files with 46 additions and 0 deletions

View File

@ -43,6 +43,8 @@ void abort (void);
int atexit (void (*) (void));
void exit (int);
void _Exit (int);
int at_quick_exit (void (*) (void));
void quick_exit (int);
char *getenv (const char *);