Welcome to mirror list, hosted at ThFree Co, Russian Federation.

atexit.h « stdlib « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e37a146a0809dd68659fd1b33db75a9303458e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 *	Common definitions for atexit-like routines
 */

enum __atexit_types
{
  __et_atexit,
  __et_onexit,
  __et_cxa
};

void __call_exitprocs _PARAMS ((int, _PTR));
int __register_exitproc _PARAMS ((int, void (*fn) (void), _PTR, _PTR));