blob: e09429808fbc39d8606ae041c3a71f1578d2e3aa [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001/* libbb_udhcp.h - busybox compatability wrapper */
2
3#ifndef _LIBBB_UDHCP_H
4#define _LIBBB_UDHCP_H
5
Russ Dill54fde9e2002-12-11 22:43:37 +00006#ifdef IN_BUSYBOX
Russ Dill61fb4892002-10-14 21:41:28 +00007#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
Russ Dillda970852002-11-05 20:10:21 +000018#include "version.h"
Russ Dill61fb4892002-10-14 21:41:28 +000019
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 */