mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
16 lines
158 B
C
16 lines
158 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void
|
|
bye (void)
|
|
{
|
|
puts ("Goodbye, cruel world....");
|
|
}
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
atexit (bye);
|
|
exit (EXIT_SUCCESS);
|
|
}
|