repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
stdlib
/
atexit.h
blob
df99963d58d8a7205539d25a384fce04583b7cac
1
/*
2
* Common definitions for atexit-like routines
3
*/
4
5
enum
__atexit_types
6
{
7
__et_atexit
,
8
__et_onexit
,
9
__et_cxa
10
};
11
12
void
__call_exitprocs
(
int
,
void
*);
13
int
__register_exitproc
(
int
,
void
(*
fn
) (
void
),
void
*,
void
*);
14