This website requires JavaScript.
Explore
Help
Sign In
Aren
/
toaruos
Watch
1
Star
0
Fork
0
You've already forked toaruos
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
ffa655ad9d
toaruos
/
libc
/
unistd
/
exit.c
8 lines
96 B
C
Raw
Normal View
History
Unescape
Escape
Break up unistd into separate files for each function
2018-05-02 06:20:06 +03:00
#
include
<unistd.h>
add atexit()
2018-09-15 10:26:45 +03:00
#
include
<stdlib.h>
Break up unistd into separate files for each function
2018-05-02 06:20:06 +03:00
void
exit
(
int
val
)
{
add atexit()
2018-09-15 10:26:45 +03:00
_handle_atexit
(
)
;
Break up unistd into separate files for each function
2018-05-02 06:20:06 +03:00
_exit
(
val
)
;
}
Reference in New Issue
Copy Permalink