Changed the type names to uintX instead of intX.
[sixpic.git] / tests / functions / call-multi-byte.c
blob366a43b00bce49b00d48ec39915ff749a4a835c9
1 // simple function call
2 int16 f (byte x){
3 return x+1024;
5 byte y; y = 3;
6 int16 z; z = f(y);
7 int16 w; w = z + 15;