at master 12 lines 177 B view raw
1#define _GNU_SOURCE 2#include <stdio.h> 3#include <stdlib.h> 4#include <unistd.h> 5 6int main(int argc, char *argv[]) 7{ 8 if (pause()) 9 _exit(EXIT_FAILURE); 10 11 _exit(EXIT_SUCCESS); 12}