chiark / gitweb /
[PATCH] fix problem where usb devices can be either the main device or the interface
[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 }