Add my copyright for changes in arm-gen.c
[tinycc.git] / tests2 / 43_void_param.c
blobde17098b2267cd7072ed13ab32abd4a51ef9d5cc
1 #include <stdio.h>
3 void fred(void)
5 printf("yo\n");
8 int main()
10 fred();
12 return 0;
15 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/