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 | |
parent | 8f187fd7072762e4024afeef074a50c8ab735561 (diff) | |
download | egawk-5caf2424094016b9a26c5d9d74b25cab39671478.tar.gz egawk-5caf2424094016b9a26c5d9d74b25cab39671478.tar.bz2 egawk-5caf2424094016b9a26c5d9d74b25cab39671478.zip |
Update mbsupport.h for newer z/OS.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | mbsupport.h | 11 |
2 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2012-10-05 Arnold D. Robbins <arnold@skeeve.com> + + * mbsupport.h: Add a bunch of undefs for z/OS. + 2012-10-04 Arnold D. Robbins <arnold@skeeve.com> * TODO.xgawk: Update. 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); |