diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-25 02:19:39 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-25 02:19:39 +0000 |
commit | 03a75825763563a80bb35d89688d8b0d451e11f2 (patch) | |
tree | 086c5a961b1cfbcd381342f66f5306fcbfd2bbe9 /posix/regex.h | |
parent | e97ec51d01087c2f8468a1bf83cfdb26b7040c30 (diff) | |
download | glibc-03a75825763563a80bb35d89688d8b0d451e11f2.tar.gz glibc-03a75825763563a80bb35d89688d8b0d451e11f2.tar.xz glibc-03a75825763563a80bb35d89688d8b0d451e11f2.zip |
* sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
New macro. (PSEUDO): Use it instead of SYSCALL_PIC_SETUP and jmp syscall_error. * sysdeps/unix/sysv/linux/i386/sysdep.S (__syscall_error): Define only #ifndef PIC. * Makeconfig (built-program-cmd): New variable. * sunrpc/Makefile (rpcgen-cmd): Use $(built-program-cmd). * time/Makefile (zic-cmd): Likewise. * hurd/Makefile (user-interfaces): Add hurd/exec_startup.
Diffstat (limited to 'posix/regex.h')
-rw-r--r-- | posix/regex.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/posix/regex.h b/posix/regex.h index 42afd84881..21dcf09005 100644 --- a/posix/regex.h +++ b/posix/regex.h @@ -283,6 +283,10 @@ typedef enum compiled, the `re_nsub' field is available. All other fields are private to the regex routines. */ +#ifndef RE_TRANSLATE_TYPE +#define RE_TRANSLATE_TYPE char * +#endif + struct re_pattern_buffer { /* [[[begin pattern_buffer]]] */ @@ -309,7 +313,7 @@ struct re_pattern_buffer comparing them, or zero for no translation. The translation is applied to a pattern when it is compiled and to a string when it is matched. */ - char *translate; + RE_TRANSLATE_TYPE translate; /* Number of subexpressions found by the compiler. */ size_t re_nsub; |