_Exit.c

The libc implementation

Author

Martin ‘Solar’ Baute

License

Public Domain

Summary
_Exit.cThe libc implementation
Functions
_Exitexits the program with a given status code, without running atexit scripts
Todo’s
Flush and close open streams.  Remove tmpfile() files.
Add testdrivers after flush / close / tmpfile is implemented.

Functions

_Exit

void _Exit(int status)

exits the program with a given status code, without running atexit scripts

Todo’s

Flush and close open streams.  Remove tmpfile() files.

Add testdrivers after flush / close / tmpfile is implemented.

void _Exit(int status)
exits the program with a given status code, without running atexit scripts