aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/libbb_udhcp.h
diff options
context:
space:
mode:
authorRuss Dill <Russ.Dill@asu.edu>2002-10-14 21:41:28 +0000
committerRuss Dill <Russ.Dill@asu.edu>2002-10-14 21:41:28 +0000
commit61fb48930f45aa536584b2047f9e703186e8f69f (patch)
treee3b93e0a694be81939f8c4762553c43ffdb9b10b /networking/udhcp/libbb_udhcp.h
parent9060a7315980bb05f42eab76b88746d43e138188 (diff)
downloadbusybox-w32-61fb48930f45aa536584b2047f9e703186e8f69f.tar.gz
busybox-w32-61fb48930f45aa536584b2047f9e703186e8f69f.tar.bz2
busybox-w32-61fb48930f45aa536584b2047f9e703186e8f69f.zip
added full udhcp integration
Diffstat (limited to 'networking/udhcp/libbb_udhcp.h')
-rw-r--r--networking/udhcp/libbb_udhcp.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/networking/udhcp/libbb_udhcp.h b/networking/udhcp/libbb_udhcp.h
new file mode 100644
index 000000000..d3f72c65b
--- /dev/null
+++ b/networking/udhcp/libbb_udhcp.h
@@ -0,0 +1,29 @@
1/* libbb_udhcp.h - busybox compatability wrapper */
2
3#ifndef _LIBBB_UDHCP_H
4#define _LIBBB_UDHCP_H
5
6#ifdef BB_VER
7#include "libbb.h"
8
9#ifdef CONFIG_FEATURE_UDHCP_SYSLOG
10#define SYSLOG
11#endif
12
13#ifdef CONFIG_FEATURE_UDHCP_DEBUG
14#define DEBUG
15#endif
16
17#define COMBINED_BINARY
18#define VERSION "0.9.8-pre"
19
20#else /* ! BB_VER */
21
22#define TRUE 1
23#define FALSE 0
24
25#define xmalloc malloc
26
27#endif /* BB_VER */
28
29#endif /* _LIBBB_UDHCP_H */