summaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-01-19 08:01:47 +0000
committerAndrew Cagney <cagney@redhat.com>2001-01-19 08:01:47 +0000
commit1b3d4cfcdee45c493d95352319a6030ed259371f (patch)
treedd5ac64d32be12033eeece9c936ad4fe16bc7e9f /gdb/defs.h
parent39805d25c444186cd3696fbbc3f27cdfc3f0beb8 (diff)
downloadgdb-1b3d4cfcdee45c493d95352319a6030ed259371f.tar.gz
Replace STRCMP with strcmp()
Diffstat (limited to 'gdb/defs.h')
-rw-r--r--gdb/defs.h1
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)