repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add memtest support.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
atexit.h
blob
917beb574a0cf3d85f77cbb0bd22f8b6fbcfb34b
1
/*
2
* atexit.h
3
*
4
* atexit()/on_exit() internal definitions
5
*/
6
7
#ifndef ATEXIT_H
8
#define ATEXIT_H
9
10
struct
atexit
{
11
void
(*
fctn
) (
int
,
void
*);
12
void
*
arg
;
/* on_exit() parameter */
13
struct
atexit
*
next
;
14
};
15
16
#endif
/* ATEXIT_H */