summaryrefslogtreecommitdiff
path: root/includes/osdep.h
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2007-06-08 14:58:20 +0000
committerDavid Hankins <dhankins@isc.org>2007-06-08 14:58:20 +0000
commit8da06bb1f533a76424324434b180c086f45a9cdb (patch)
tree2a3dd6b10aebba40457f86867c7d2bae4d8278e0 /includes/osdep.h
parent627ad6d620ccd6317b2c0fa9e080c66e4de091e4 (diff)
downloadisc-dhcp-8da06bb1f533a76424324434b180c086f45a9cdb.tar.gz
- Compilation on HP/UX has been repaired. The changes should generally
apply to any architecture that supplies SIOCGLIFCONF but does not use 'struct lifconf' structures to pass values. [ISC-Bugs #16928]
Diffstat (limited to 'includes/osdep.h')
-rw-r--r--includes/osdep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/osdep.h b/includes/osdep.h
index c4c301c9..6e1db70e 100644
--- a/includes/osdep.h
+++ b/includes/osdep.h
@@ -43,7 +43,7 @@
/* XXX: now that we have a nice autoconf, we should sense this in
* ./configure.
*/
-#ifdef __sun__
+#if defined(__sun__) || defined(__hpux__)
typedef uint8_t u_int8_t;
typedef uint16_t u_int16_t;
typedef uint32_t u_int32_t;