Text only
28 Aug 2009
 
 
Tools: wrap/unwrap  
1
2
3
4
5
6
7
[dottedmag@vertex:~]% cat a.c
int main()
{
for(int i = 0;;i++);
}
[dottedmag@vertex:~]% gcc -Wall --std=c99 -o a a.c
[dottedmag@vertex:~]%