repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
core: do aligned transfers in bcopy32
[syslinux.git]
/
com32
/
lib
/
atexit.c
blob
078dd8b2117ef58ffa271cd1f27d121bf842ee9a
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
}