summaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1995-08-10 06:49:35 +0000
committerPaul Mackerras <paulus@samba.org>1995-08-10 06:49:35 +0000
commit50659b2e7cdfa0e3be36a6b4753dcca28c57f1e6 (patch)
tree238c8f4573f82256d995d7ee6437f2d92ebd654a /include/net
parenta17e555c2c3755105dc62a6c96f6d49556aff1d5 (diff)
downloadppp-50659b2e7cdfa0e3be36a6b4753dcca28c57f1e6.tar.gz
Protect against problems if bitypes.h from BIND distribution is included.
Diffstat (limited to 'include/net')
-rw-r--r--include/net/ppp_defs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ppp_defs.h b/include/net/ppp_defs.h
index 3e2f9a7..77f01bb 100644
--- a/include/net/ppp_defs.h
+++ b/include/net/ppp_defs.h
@@ -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