Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0108-callvararg.c
blobd12d16127b578f27822a1c6ff9673119a828a51f
2 int strcmp(const char *s1, const char *s2);
3 int snprintf(char *str, int size, const char *format, ...);
5 int
6 main()
8 char buf[128];
10 snprintf(buf, sizeof(buf), "hello %s", "world!");
12 if (strcmp("hello world!", buf) != 0)
13 return 1;
15 return 0;