scc
simple c99 compiler
git clone
git://git.simple-cc.org/scc
Log
|
Files
|
Refs
|
Submodules
|
README
|
LICENSE
0114-shortassig.c (63B)
1
int
2
main()
3
{
4
short s = 1;
5
long l = 1;
6
7
s -= l;
8
return s;
9
}