From: Ted Lemon Date: Mon, 4 Oct 1999 23:51:16 +0000 (+0000) Subject: Protect against multiple inclusion X-Git-Tag: V3-BETA-1-PATCH-2~5^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=89a93f8b08cbd23347b9db6eef4b323dd038c019;p=thirdparty%2Fdhcp.git Protect against multiple inclusion --- diff --git a/includes/omapip/omapip.h b/includes/omapip/omapip.h index dff9bd219..038f42076 100644 --- a/includes/omapip/omapip.h +++ b/includes/omapip/omapip.h @@ -20,6 +20,9 @@ * http://www.isc.org for more information. */ +#ifndef _OMAPIP_H_ +#define _OMAPIP_H_ + #ifndef __CYGWIN32__ #include #include @@ -490,3 +493,5 @@ isc_result_t omapi_get_int_value (u_int32_t *, omapi_typed_data_t *); isc_result_t omapi_object_handle (omapi_handle_t *, omapi_object_t *); isc_result_t omapi_handle_lookup (omapi_object_t **, omapi_handle_t); isc_result_t omapi_handle_td_lookup (omapi_object_t **, omapi_typed_data_t *); + +#endif _OMAPIP_H_