Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / tcc / 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 :*/