Replace STRCMP with strcmp()
[deliverable/binutils-gdb.git] / gdb / defs.h
index 87e570f4b5a042f4ad590efb433f6c7d35e2f440..b5fe805d64db6cab2d392d336abbb16d799c5f8a 100644 (file)
@@ -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)
 
This page took 0.025432 seconds and 4 git commands to generate.