source: trunk/libs/newlib/src/newlib/libc/stdlib/atexit.h @ 567

Last change on this file since 567 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 226 bytes
Line 
1/*
2 *      Common definitions for atexit-like routines
3 */
4
5enum __atexit_types
6{
7  __et_atexit,
8  __et_onexit,
9  __et_cxa
10};
11
12void __call_exitprocs (int, void *);
13int __register_exitproc (int, void (*fn) (void), void *, void *);
14
Note: See TracBrowser for help on using the repository browser.