summaryrefslogtreecommitdiff
path: root/src/stdlib/_stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/_stdlib.h')
-rw-r--r--src/stdlib/_stdlib.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stdlib/_stdlib.h b/src/stdlib/_stdlib.h
index de5a97d0..769f220b 100644
--- a/src/stdlib/_stdlib.h
+++ b/src/stdlib/_stdlib.h
@@ -20,8 +20,7 @@ struct __stdlib {
struct atexit *next;
struct atexit *prev;
} atexit, at_quick_exit;
- int exit_called;
- int quick_exit_called;
+ enum { REGULAR = 1, QUICK } exit_called;
unsigned int rand;
char **environ;
constraint_handler_t constraint_handler;