better section detection
[tridge/junkcode.git] / ascii.c
1 typedef unsigned char uint8;
2
3 void blah(const uint8 *x)
4 {
5         printf("%d\n", x[0]);
6 }
7
8 void main(void)
9 {
10         blah((const uint8 *)"\04");
11 }