Hello.
Currently, in the last version (from git) of tiny c, when you use the
function:

isxdigit it produce this call: isxdigit

but when you use the widechar version: iswxdigit :

iswxdigit produce this call: iswctype(d, _HEX)

Then, when you use isxdigit tiny c would be generate the call to:
_isctype(d, _HEX)

I use this little fix:
#undef        isxdigit
#undef        iswxdigit
#define        isxdigit(d)      _isctype(d, _HEX)
#define        iswxdigit(d)    iswctype(d, _HEX)


Carlos.
_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to