From: Ted Lemon Date: Tue, 5 Oct 1999 01:31:42 +0000 (+0000) Subject: Protect from multiple inclusion. X-Git-Tag: BCTEL_SPECIAL_19991124~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfc3d44892a08ad4a927601136283d0b20459c35;p=thirdparty%2Fdhcp.git Protect from multiple inclusion. --- diff --git a/includes/cdefs.h b/includes/cdefs.h index 789164216..f968a806e 100644 --- a/includes/cdefs.h +++ b/includes/cdefs.h @@ -27,6 +27,8 @@ * with Vixie Laboratories. */ +#if !defined (__ISC_DHCP_CDEFS_H__) +#define __ISC_DHCP_CDEFS_H__ #if (defined (__GNUC__) || defined (__STDC__)) && !defined (BROKEN_ANSI) #define PROTO(x) x #define KandR(x) @@ -42,3 +44,4 @@ #define ANSI_DECL(x) #define INLINE #endif /* __GNUC__ || __STDC__ */ +#endif /* __ISC_DHCP_CDEFS_H__ */ diff --git a/includes/osdep.h b/includes/osdep.h index c87e1a57c..53100f2f3 100644 --- a/includes/osdep.h +++ b/includes/osdep.h @@ -20,6 +20,9 @@ * http://www.isc.org for more information. */ +#if !defined (__ISC_DHCP_OSDEP_H__) +#define __ISC_DHCP_OSDEP_H__ + #include "site.h" /* Porting:: @@ -274,3 +277,4 @@ # define HAVE_AF_LINK #endif +#endif /* __ISC_DHCP_OSDEP_H__ */