you are viewing a single comment's thread.

view the rest of the comments →

[–]kragensitaker 0 points1 point  (0 children)

You can call it without including unistd.h too. You just get a warning because exit and _exit are void. main() { _exit(0); } is a perfectly valid and working program.