commit d5f1295cee308bf12c075c8ee02bc8757f243b33 parent 346134839a1b9c21fb4db1172ae57120304fc579 Author: Quentin Rameau <quinq@fifth.space> Date: Thu, 9 Mar 2017 12:22:54 +0100 [libc] Fix typo in exit.c Diffstat:
M | libc/src/exit.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/src/exit.c b/libc/src/exit.c @@ -10,6 +10,6 @@ void exit(int status) { while (_exitn > 0) - (*_exitf[--exitn])(); + (*_exitf[--_exitn])(); _Exit(status); }