/* * vim:ts=4:sw=4:expandtab * */ #include #include #include void log() { printf("log started\n"); for (;;) { } } void log_cleanup() { printf("log cleanup\n"); _exit(EXIT_SUCCESS); }