diff options
Diffstat (limited to 'libc/manual/examples/atexit.c')
-rw-r--r-- | libc/manual/examples/atexit.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/manual/examples/atexit.c b/libc/manual/examples/atexit.c new file mode 100644 index 000000000..42bba7112 --- /dev/null +++ b/libc/manual/examples/atexit.c @@ -0,0 +1,15 @@ +#include <stdio.h> +#include <stdlib.h> + +void +bye (void) +{ + puts ("Goodbye, cruel world...."); +} + +int +main (void) +{ + atexit (bye); + exit (EXIT_SUCCESS); +} |