/* * atexit.c */ #include int atexit(void (*fctn)(void)) { return on_exit((void (*)(int, void *))fctn, NULL); }