summaryrefslogtreecommitdiff
path: root/userland/libc/stdlib/atexit.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdlib/atexit.c')
-rw-r--r--userland/libc/stdlib/atexit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/userland/libc/stdlib/atexit.c b/userland/libc/stdlib/atexit.c
index 0e401ff..1dc34cc 100644
--- a/userland/libc/stdlib/atexit.c
+++ b/userland/libc/stdlib/atexit.c
@@ -1,6 +1,6 @@
#include <stdlib.h>
int atexit(void (*func)(void)) {
- //TODO
- return 0;
+ // TODO
+ return 0;
}