Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 
0003 int a(void);
0004 int b(void);
0005 int c(void);
0006 int d(void);
0007 int e(void);
0008 int f(void);
0009 int inc(void);
0010 
0011 int main(void)
0012 {
0013     a();
0014     b();
0015     c();
0016     d();
0017     e();
0018     f();
0019     inc();
0020 
0021     return 0;
0022 }