summaryrefslogtreecommitdiff
path: root/userland/libc/stdlib/atexit.c
blob: 0e401ff823eb70b49e7a4f1c6d18216f116942ac (plain)
1
2
3
4
5
6
#include <stdlib.h>

int atexit(void (*func)(void)) {
	//TODO
	return 0;
}