xref
: /
third_party
/
musl
/
porting
/
uniproton
/
kernel
/
src
/
exit
/
atexit.c
(revision 570af302)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/musl/porting/uniproton/kernel/src/exit/
1
#
include
<
stdlib.h
>
2
3
int
atexit
(
void
(*
func
)(
void
))
4
{
5
return
0;
6
}