Sign in
googlers
/
maze
/
klibc
/
klibc-0.18
/
.
/
atexit.c
blob: 078dd8b2117ef58ffa271cd1f27d121bf842ee9a [
file
] [
log
] [
blame
]
/*
* atexit.c
*/
#include
<stdlib.h>
int
atexit
(
void
(*
fctn
)(
void
))
{
return
on_exit
((
void
(*)(
int
,
void
*))
fctn
,
NULL
);
}