about summary refs log tree commit diff
path: root/string/strcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strcmp.c')
-rw-r--r--string/strcmp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/string/strcmp.c b/string/strcmp.c
index 4d4c044660..bf5cf5bd72 100644
--- a/string/strcmp.c
+++ b/string/strcmp.c
@@ -19,11 +19,15 @@
 
 #undef strcmp
 
+#ifndef STRCMP
+# define STRCMP strcmp
+#endif
+
 /* Compare S1 and S2, returning less than, equal to or
    greater than zero if S1 is lexicographically less than,
    equal to or greater than S2.  */
 int
-strcmp (const char *p1, const char *p2)
+STRCMP (const char *p1, const char *p2)
 {
   const unsigned char *s1 = (const unsigned char *) p1;
   const unsigned char *s2 = (const unsigned char *) p2;