]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Protect against multiple inclusion
authorTed Lemon <source@isc.org>
Mon, 4 Oct 1999 23:51:16 +0000 (23:51 +0000)
committerTed Lemon <source@isc.org>
Mon, 4 Oct 1999 23:51:16 +0000 (23:51 +0000)
includes/omapip/omapip.h

index dff9bd21984f41ce4b08df18a989e49317d7b310..038f4207618afa7337c6a2e1dfc63b453b647a4c 100644 (file)
@@ -20,6 +20,9 @@
  * http://www.isc.org for more information.
  */
 
+#ifndef _OMAPIP_H_
+#define _OMAPIP_H_
+
 #ifndef __CYGWIN32__
 #include <sys/types.h>
 #include <netinet/in.h>
@@ -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_