]> git.sur5r.net Git - openldap/commitdiff
Protect strdup/memcmp from macro subsitution. Let compiler pick registers.
authorKurt Zeilenga <kurt@openldap.org>
Wed, 18 Nov 1998 16:13:51 +0000 (16:13 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 18 Nov 1998 16:13:51 +0000 (16:13 +0000)
libraries/liblutil/memcmp.c
libraries/liblutil/strdup.c

index b2c575d955da0e4ee237cf0445c7d04eb0b34c5f..99daac2d0be7bc5fab115b70d3f10486b7c38d27 100644 (file)
@@ -6,10 +6,10 @@
  * Memory Compare
  */
 int
-memcmp(const void *v1, const void *v2, int n) 
+(memcmp)(const void *v1, const void *v2, int n) 
 {
     if (n != 0) {
-               register const unsigned char *s1=v1, *s2=v2;
+               const unsigned char *s1=v1, *s2=v2;
         do {
             if (*s1++ != *s2++)
                 return (*--s1 - *--s2);
index 31baa12b30e6339e2b6a0e95866b6bf2a0cc0467..27b0d81d54a402ab7ae4a088b292f8f2fdea68df 100644 (file)
@@ -6,7 +6,7 @@
 #include <ac/string.h>
 #include "lutil.h"
 
-char *strdup( const char *s )
+char *(strdup)( const char *s )
 {
         char    *p;