summaryrefslogtreecommitdiff
path: root/usr/src/common/net/dhcp/octet.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/common/net/dhcp/octet.c')
-rw-r--r--usr/src/common/net/dhcp/octet.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/common/net/dhcp/octet.c b/usr/src/common/net/dhcp/octet.c
index 973381b033..d8367bbf0b 100644
--- a/usr/src/common/net/dhcp/octet.c
+++ b/usr/src/common/net/dhcp/octet.c
@@ -24,8 +24,6 @@
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/* LINTLIBRARY */
#if !defined(_BOOT) && !defined(_KERNEL)
@@ -34,10 +32,10 @@
#include <stdlib.h>
#endif /* _BOOT && _KERNEL */
#include <sys/types.h>
+#include <sys/null.h>
#include <sys/errno.h>
#if defined(_BOOT) || defined(_KERNEL)
-#define NULL 0
#define isdigit(c) ((c) >= '0' && c <= '9')
#define isxdigit(c) (isdigit(c) || (((c) >= 'a') && ((c) <= 'f')) || \
(((c) >= 'A') && ((c) <= 'F')))