Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0025-string.c
blob9dbb19384a4fbb3858841e2cb63023cb085b1a7e
2 int strlen(const char *);
4 int
5 main(void)
7 const char *p;
9 p = "hello";
10 return strlen(p) - 5;