Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19-rc8 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}