diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-01 21:43:56 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-01 21:43:56 +0000 |
commit | 9823e3f4c985eb5919103cc84acf2a6055ed724f (patch) | |
tree | 7e57204ed8d18fce24eb270481132c58d01ae7eb /gdb/regex.c | |
parent | c438b3af2a58c099512730b460c9298149548de6 (diff) | |
download | gdb-9823e3f4c985eb5919103cc84acf2a6055ed724f.zip gdb-9823e3f4c985eb5919103cc84acf2a6055ed724f.tar.gz gdb-9823e3f4c985eb5919103cc84acf2a6055ed724f.tar.bz2 |
bcmp -> memcmp
Diffstat (limited to 'gdb/regex.c')
-rw-r--r-- | gdb/regex.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gdb/regex.c b/gdb/regex.c index 7ad351c..21436d3 100644 --- a/gdb/regex.c +++ b/gdb/regex.c @@ -32,9 +32,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #else /* not emacs */ -#define bcmp(s1,s2,n) memcmp((s1),(s2),(n)) -#define bzero(s,n) memset((s),0,(n)) - /* Make alloca work the best possible way. */ #ifdef __GNUC__ #define alloca __builtin_alloca @@ -1011,7 +1008,7 @@ re_match (pbufp, string, size, pos, regs) int re_max_failures = 2000; -static int bcmp_translate(); +static int memcmp_translate(); /* Match the pattern described by PBUFP against data which is the virtual concatenation of STRING1 and STRING2. SIZE1 and SIZE2 are the sizes of the two data strings. @@ -1219,7 +1216,7 @@ re_match_2 (pbufp, string1, size1, string2, size2, pos, regs, mstop) if (mcnt > dend2 - d2) mcnt = dend2 - d2; /* Compare that many; failure if mismatch, else skip them. */ - if (translate ? bcmp_translate (d, d2, mcnt, translate) : bcmp (d, d2, mcnt)) + if (translate ? memcmp_translate (d, d2, mcnt, translate) : memcmp (d, d2, mcnt)) goto fail; d += mcnt, d2 += mcnt; } @@ -1537,7 +1534,7 @@ re_match_2 (pbufp, string1, size1, string2, size2, pos, regs, mstop) } static int -bcmp_translate (s1, s2, len, translate) +memcmp_translate (s1, s2, len, translate) unsigned char *s1, *s2; register int len; unsigned char *translate; |