From a4122443afc9130bc65910974728b468b217d3c2 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Wed, 10 Jun 1998 18:54:59 +0000 Subject: [PATCH] Wed Jun 10 11:53:42 1998 Jason Molenda (crash@bugshack.cygnus.com) * gnu-regex.c: Include "gnu-regex.h", not "regex.h". --- gdb/ChangeLog | 4 ++++ gdb/gnu-regex.c | 13 +++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 89d3d5e77e1..97e77cc40a0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Wed Jun 10 11:53:42 1998 Jason Molenda (crash@bugshack.cygnus.com) + + * gnu-regex.c: Include "gnu-regex.h", not "regex.h". + Wed Jun 10 11:34:07 1998 Jason Molenda (crash@bugshack.cygnus.com) * gnu-regex.c, gnu-regex.h: Change LGPL license to GPL license diff --git a/gdb/gnu-regex.c b/gdb/gnu-regex.c index 770df3ed336..424f6247599 100644 --- a/gdb/gnu-regex.c +++ b/gdb/gnu-regex.c @@ -44,7 +44,7 @@ #if defined STDC_HEADERS && !defined emacs # include #else -/* We need this for `regex.h', and perhaps for the Emacs include files. */ +/* We need this for `gnu-regex.h', and perhaps for the Emacs include files. */ # include #endif @@ -204,7 +204,8 @@ init_syntax_once () #endif /* not emacs */ /* Get the interface, including the syntax bits. */ -#include "regex.h" +/* CYGNUS LOCAL: call it gnu-regex.h, not regex.h, to avoid name conflicts */ +#include "gnu-regex.h" /* isalpha etc. are used for the character classes. */ #include @@ -978,7 +979,7 @@ reg_syntax_t re_syntax_options; different, incompatible syntaxes. The argument SYNTAX is a bit mask comprised of the various bits - defined in regex.h. We return the old syntax. */ + defined in gnu-regex.h. We return the old syntax. */ reg_syntax_t re_set_syntax (syntax) @@ -1000,7 +1001,7 @@ weak_alias (__re_set_syntax, re_set_syntax) #endif /* This table gives an error message for each of the error codes listed - in regex.h. Obviously the order here has to be same as there. + in gnu-regex.h. Obviously the order here has to be same as there. POSIX doesn't require that we do anything for REG_NOERROR, but why not be nice? */ @@ -1796,7 +1797,7 @@ static boolean group_in_compile_stack _RE_ARGS ((compile_stack_type regnum_t regnum)); /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX. - Returns one of error codes defined in `regex.h', or zero for success. + Returns one of error codes defined in `gnu-regex.h', or zero for success. Assumes the `allocated' (and perhaps `buffer') and `translate' fields are set in BUFP on entry. @@ -5583,7 +5584,7 @@ re_exec (s) routine will report only success or failure, and nothing about the registers. - It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for + It returns 0 if it succeeds, nonzero if it doesn't. (See gnu-regex.h for the return codes and their meanings.) */ int -- 2.30.2