diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-05 12:51:14 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-05 12:51:14 +0200 |
commit | 5caf2424094016b9a26c5d9d74b25cab39671478 (patch) | |
tree | e601bb974212d1d693e4de4e7de0a8dd37f3dd27 /mbsupport.h | |
parent | 8f187fd7072762e4024afeef074a50c8ab735561 (diff) | |
download | egawk-5caf2424094016b9a26c5d9d74b25cab39671478.tar.gz egawk-5caf2424094016b9a26c5d9d74b25cab39671478.tar.bz2 egawk-5caf2424094016b9a26c5d9d74b25cab39671478.zip |
Update mbsupport.h for newer z/OS.
Diffstat (limited to 'mbsupport.h')
-rw-r--r-- | mbsupport.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mbsupport.h b/mbsupport.h index 1eb1a444..9a62486f 100644 --- a/mbsupport.h +++ b/mbsupport.h @@ -87,6 +87,17 @@ #define iswalnum isalnum #define iswalpha isalpha #define iswupper isupper +#if defined(ZOS_USS) +#undef towupper +#undef towlower +#undef btowc +#undef iswalnum +#undef iswalpha +#undef iswupper +#undef wctype +#undef iswctype +#undef wcscoll +#endif extern wctype_t wctype(const char *name); extern int iswctype(wint_t wc, wctype_t desc); |