* gcse.c (delete_null_pointer_checks): Fix typo in this change:
[official-gcc.git] / libio / cleanup.c
blob691fa838b26ab9cb7553f29a8e3965bf7782bb45
1 #include "libioP.h"
2 #if _G_HAVE_ATEXIT
3 #include <stdlib.h>
5 typedef void (*voidfunc) __P((void));
7 static void
8 _IO_register_cleanup ()
10 atexit ((voidfunc)_IO_cleanup);
11 _IO_cleanup_registration_needed = 0;
14 void (*_IO_cleanup_registration_needed)() = _IO_register_cleanup;
15 #else
16 void (*_IO_cleanup_registration_needed)() = NULL;
17 #endif /* _G_HAVE_ATEXIT */