• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * atexit.c
3  */
4 
5 #include <stdlib.h>
6 
atexit(void (* fctn)(void))7 int atexit(void (*fctn) (void))
8 {
9     return on_exit((void (*)(int, void *))fctn, NULL);
10 }
11