nicer formatting
[tridge/junkcode.git] / short.c
1 #include <stdio.h>
2
3 int main(void)
4 {
5         unsigned short x1, x2, x3;
6
7         x1 = 0xF000;
8         x2 = 0xF000;
9         x3 = 0xFF00;
10
11         if (x1 + x2 > x3) {
12                 printf("ok\n");
13         } else {
14                 printf("oops\n");
15         }
16         return 0;
17 }