Issue #246: Include xlocale.h too, to get locale_t defined, since not all OSes include that in locale.h

This commit is contained in:
Eric Haszlakiewicz
2016-08-02 22:25:05 -04:00
parent fa76e4a8c9
commit 9688f343a5
3 changed files with 7 additions and 1 deletions

View File

@@ -35,6 +35,9 @@
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif /* HAVE_LOCALE_H */
#ifdef HAVE_XLOCALE_H
#include <xlocale.h>
#endif
#define jt_hexdigit(x) (((x) <= '9') ? (x) - '0' : ((x) & 7) + 9)