0021-intfunc.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0021-intfunc.c (81B)
---
1 int
2 foo(int a, int b)
3 {
4 return 2 + a - b;
5 }
6
7 int
8 main()
9 {
10 return foo(1, 3);
11 }
12