Penguin
Annotated edit history of exit(3) version 4, including all changes. View license author blame.
Rev Author # Line
1 perry 1 EXIT
2 !!!EXIT
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 exit - cause normal program termination
14 !!SYNOPSIS
15
16
17 __#include
18 __ ''status''__);
19 __
20 !!DESCRIPTION
21
22
23 The __exit()__ function causes normal program termination
24 and the value of ''status'' is returned to the parent.
25 All functions registered with __atexit()__ and
26 __on_exit()__ are called in the reverse order of their
27 registration, and all open streams are flushed and
28 closed.
29 !!RETURN VALUE
30
31
32 The __exit()__ function does not return.
33 !!CONFORMING TO
34
35
36 SVID 3, POSIX, BSD 4.3, ISO 9899
37 !!SEE ALSO
38
39
40 _exit(2), atexit(3),
4 perry 41 on_exit(3)
1 perry 42 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.