This website requires JavaScript.
Explore
Help
Sign In
d0p1
/
ack
Watch
1
Star
0
Fork
You've already forked ack
0
Code
Issues
Pull requests
Packages
Projects
Releases
Wiki
Activity
8619ce3ada
ack
/
plat
/
pdpv7
/
libsys
/
exit.c
9 lines
100 B
C
Raw
Normal View
History
Unescape
Escape
Fix a whole bunch of warnings.
2022-08-01 20:08:23 +00:00
extern
void
_cleanup
(
void
)
;
extern
void
_exit
(
int
n
)
;
void
exit
(
int
n
)
Initial revision
1987-01-07 17:13:41 +00:00
{
_cleanup
(
)
;
_exit
(
n
)
;
}
Reference in a new issue
Copy permalink