tar -Z, uncompress support
[oweals/busybox.git] / networking / udhcp / libbb_udhcp.h
1 /* libbb_udhcp.h - busybox compatability wrapper */
2
3 #ifndef _LIBBB_UDHCP_H
4 #define _LIBBB_UDHCP_H
5
6 #ifdef IN_BUSYBOX
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 #include "version.h"
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 */