Add my copyright for changes in arm-gen.c
[tinycc.git] / tests2 / 01_comment.c
bloba2e6bc63d6cf43b0e923a20b425443954cfaf21b
1 #include <stdio.h>
3 int main()
5 printf("Hello\n");
6 printf("Hello\n"); /* this is a comment */ printf("Hello\n");
7 printf("Hello\n");
8 // this is also a comment sayhello();
9 printf("Hello\n");
11 return 0;
14 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :