blob: 42bba71126261684e324ea91a4c116d296f5dd00 [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
void
bye (void)
{
puts ("Goodbye, cruel world....");
}
int
main (void)
{
atexit (bye);
exit (EXIT_SUCCESS);
}