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

Configure Feed

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

at v4.9-rc5 21 lines 170 B view raw
1 2int a(void); 3int b(void); 4int c(void); 5int d(void); 6int e(void); 7int f(void); 8int inc(void); 9 10int main(void) 11{ 12 a(); 13 b(); 14 c(); 15 d(); 16 e(); 17 f(); 18 inc(); 19 20 return 0; 21}