chiark / gitweb /
[PATCH] add IGNORE rule type
[elogind.git] / klibc / klibc / atexit.c
1 /*
2  * atexit.c
3  */
4
5 #include <stdlib.h>
6
7 int atexit(void (*fctn)(void))
8 {
9   return on_exit((void (*)(int, void *))fctn, NULL);
10 }