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 v4.1-rc1 19 lines 147 B view raw
1 2int a(void); 3int b(void); 4int c(void); 5int d(void); 6int e(void); 7int f(void); 8 9int main(void) 10{ 11 a(); 12 b(); 13 c(); 14 d(); 15 e(); 16 f(); 17 18 return 0; 19}