diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-01-19 08:01:47 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-01-19 08:01:47 +0000 |
commit | 1b3d4cfcdee45c493d95352319a6030ed259371f (patch) | |
tree | dd5ac64d32be12033eeece9c936ad4fe16bc7e9f /gdb/defs.h | |
parent | 39805d25c444186cd3696fbbc3f27cdfc3f0beb8 (diff) | |
download | gdb-1b3d4cfcdee45c493d95352319a6030ed259371f.tar.gz |
Replace STRCMP with strcmp()
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/defs.h b/gdb/defs.h index 87e570f4b5a..b5fe805d64d 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -148,7 +148,6 @@ typedef bfd_vma CORE_ADDR; issue is found that we spend the effort on algorithmic optimizations than micro-optimizing.'' J.T. */ -#define STRCMP(a,b) (*(a) == *(b) ? strcmp ((a), (b)) : (int)*(a) - (int)*(b)) #define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0) #define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0) |