Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
atexit.c
blob: 804790ee5c8e5b5a9788b3c634e3c15bf3092792 [
file
] [
log
] [
blame
] [
edit
]
/*
* atexit.c
*/
#include
<stdlib.h>
int
atexit
(
void
(*
fctn
)
(
void
))
{
return
on_exit
((
void
(*)(
int
,
void
*))
fctn
,
NULL
);
}