added preload_usb hack
[tridge/junkcode.git] / priu64.c
1 #include <stdio.h>
2 #include <inttypes.h>
3
4 int main(void)
5 {
6         char x[100];
7         sprintf(x, "%"PRIu64, (unsigned long long)20);
8         if (strcmp(x, "20") != 0) {
9                 printf("FAILED '%s'\n", x);
10                 exit(1);
11         }
12         return 0;
13 }