]> git.sur5r.net Git - openldap/commitdiff
We're assuming STDC all the way.
authorKurt Zeilenga <kurt@openldap.org>
Sat, 24 Oct 1998 20:46:54 +0000 (20:46 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 24 Oct 1998 20:46:54 +0000 (20:46 +0000)
include/ac/errno.h
include/ac/socket.h
include/ac/string.h
include/ac/time.h

index b4854c8ba027b1c762f0a0796e271ae6a7b9ece4..b083cbbdf5eadbfafcb5fd7569b7b5cd85c67f71 100644 (file)
@@ -3,10 +3,10 @@
 #ifndef _AC_ERRNO_H
 #define _AC_ERRNO_H
 
-#if defined( HAVE_SYS_ERRNO_H )
-# include <sys/errno.h>
-#elif defined( HAVE_ERRNO_H )
+#if defined( HAVE_ERRNO_H )
 # include <errno.h>
+#elif defined( HAVE_SYS_ERRNO_H )
+# include <sys/errno.h>
 #endif
 
 #ifdef DECL_SYS_ERRLIST 
index 3530b4896be810392f0359c0e1b16c7398d80eac..1527d02e5f051ecf8f8791e6bf8fd7e452128213 100644 (file)
@@ -88,6 +88,7 @@
 #define PDP_ENDIAN  3412               /* LSB first in word, MSW first in long */
 
 /* assume autoconf's AC_C_BIGENDIAN has been run */
+/* if it hasn't, we assume (maybe falsely) the order is LITTLE ENDIAN */
 #ifdef WORDS_BIGENDIAN
 #define BYTE_ORDER  BIG_ENDIAN
 #else
index cbe24c190f3963a1d1dbe7824777cd4de3e55e36..2a923e9356e616630e90f933392d96720abea972 100644 (file)
@@ -3,7 +3,7 @@
 #ifndef _AC_STRING_H
 #define _AC_STRING_H
 
-#if STDC_HEADERS
+#ifdef STDC_HEADERS
 #      include <string.h>
 #else
 #      ifndef HAVE_STRCHR
 #      endif
 #endif
 
-#ifdef HAVE_MEMMOVE
-#      define SAFEMEMCPY( d, s, n )                    memmove((s), (d), (n))
+#if defined( HAVE_MEMMOVE )
+#define SAFEMEMCPY( d, s, n )                  memmove((s), (d), (n))
+#elif defined( HAVE_BCOPY )
+#define SAFEMEMCPY( d, s, n )          bcopy((s), (d), (n))
+#elif defined( MACOS )
+#define SAFEMEMCPY( d, s, n )  BlockMoveData((Ptr)(s), (Ptr)(d), (n))
 #else
-#      ifdef HAVE_BCOPY
-#              define SAFEMEMCPY( d, s, n )            bcopy((s), (d), (n))
-#      else
-#              ifdef MACOS
-#                      define SAFEMEMCPY( d, s, n )    BlockMoveData((Ptr)(s), (Ptr)(d), (n))
-#              else
-#                      define SAFEMEMCPY( d, s, n )    memmove((s), (d), (n))
-#              endif
-#      endif
+/* nothing left but memcpy() */
+#define SAFEMEMCPY( d, s, n )  memcpy((s), (d), (n))
 #endif
 
 #endif /* _AC_STRING_H */
index 9cc89f43b434cf64e67305fedafb12412e5e022b..ba18790a4ce63f195238d4b5aee6d65549ac39f7 100644 (file)
@@ -6,12 +6,10 @@
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
+#elif HAVE_SYS_TIME_H
+# include <sys/time.h>
 #else
-# if HAVE_SYS_TIME_H
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
+# include <time.h>
 #endif
 
 #endif /* _AC_TIME_H */