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
Adding upstream version 4.00~pre54+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
atexit.c
blob
804790ee5c8e5b5a9788b3c634e3c15bf3092792
1
/*
2
* atexit.c
3
*/
4
5
#include <stdlib.h>
6
7
int
atexit
(
void
(*
fctn
) (
void
))
8
{
9
return
on_exit
((
void
(*)(
int
,
void
*))
fctn
,
NULL
);
10
}