cube(long x)1 static long cube(long x)
2 {
3     return x * x * x;
4 }
5 
6 #define long broken_long
7