0058-bug.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0058-bug.c (88B)
---
1 int
2 main()
3 {
4 char a[16], b[16];
5
6 if(sizeof(a) != sizeof(b))
7 return 1;
8 return 0;
9 }