From e8d89c9b3992a5da9fecf185e13b7cf3b652665c Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 9 Sep 2018 23:24:47 -0500 Subject: [PATCH] Add prototype for _Exit() function from C99. --- ORCACDefs/stdlib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ORCACDefs/stdlib.h b/ORCACDefs/stdlib.h index 47957b5..173a4c4 100644 --- a/ORCACDefs/stdlib.h +++ b/ORCACDefs/stdlib.h @@ -48,6 +48,7 @@ void *calloc(size_t, size_t); div_t div(int, int); void exit(int); void _exit(int); +void _Exit(int); void free(void *); char *getenv(const char *); long labs(long);