]> git.ozlabs.org Git - ppp.git/commitdiff
Protect against problems if bitypes.h from BIND distribution is included.
authorPaul Mackerras <paulus@samba.org>
Thu, 10 Aug 1995 06:49:35 +0000 (06:49 +0000)
committerPaul Mackerras <paulus@samba.org>
Thu, 10 Aug 1995 06:49:35 +0000 (06:49 +0000)
include/net/ppp_defs.h

index 3e2f9a7379f99e0cb4e271131f5d981267e96d06..77f01bb1b1ba99b2bea5deecc826d85b4d362a12 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: ppp_defs.h,v 1.6 1995/04/24 02:42:06 paulus Exp $  */
+/*     $Id: ppp_defs.h,v 1.7 1995/08/10 06:49:35 paulus Exp $  */
 
 /*
  * ppp_defs.h - PPP definitions.
@@ -74,7 +74,7 @@
 /*
  * A 32-bit unsigned integral type.
  */
-#ifndef __BIT_TYPES_DEFINED__
+#if !defined(__BIT_TYPES_DEFINED__) && !defined(_BITYPES)
 #ifdef UINT32_T
 typedef UINT32_T       u_int32_t;
 #else