Skip to content
This repository has been archived by the owner on Feb 5, 2022. It is now read-only.

Commit

Permalink
regex: port Gnulib code to z/OS POSIX environment
Browse files Browse the repository at this point in the history
Problem reported by Arnold Robbins in:
https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
* posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
Undef.
  • Loading branch information
eggert committed Aug 23, 2018
1 parent debc4c9 commit b35d350
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2018-08-22 Paul Eggert <[email protected]>

regex: port Gnulib code to z/OS POSIX environment
Problem reported by Arnold Robbins in:
https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
* posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
Undef.

2018-08-22 Joseph Myers <[email protected]>

* math/test-double-vlen2.h: Don't include <math-tests-rounding.h>.
Expand Down
3 changes: 3 additions & 0 deletions posix/regex_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@
/* Rename to standard API for using out of glibc. */
#ifndef _LIBC
# undef __wctype
# undef __iswalnum
# undef __iswctype
# undef __towlower
# undef __towupper
# define __wctype wctype
# define __iswalnum iswalnum
# define __iswctype iswctype
Expand Down

0 comments on commit b35d350

Please sign in to comment.