2002-10-15 03:11:28 +05:30
|
|
|
/* libbb_udhcp.h - busybox compatability wrapper */
|
|
|
|
|
|
|
|
#ifndef _LIBBB_UDHCP_H
|
|
|
|
#define _LIBBB_UDHCP_H
|
|
|
|
|
2002-12-12 04:13:37 +05:30
|
|
|
#ifdef IN_BUSYBOX
|
2002-10-15 03:11:28 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_UDHCP_SYSLOG
|
|
|
|
#define SYSLOG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_UDHCP_DEBUG
|
|
|
|
#define DEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define COMBINED_BINARY
|
2002-11-06 01:40:21 +05:30
|
|
|
#include "version.h"
|
2002-10-15 03:11:28 +05:30
|
|
|
|
|
|
|
#else /* ! BB_VER */
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#define FALSE 0
|
|
|
|
|
|
|
|
#define xmalloc malloc
|
|
|
|
|
|
|
|
#endif /* BB_VER */
|
|
|
|
|
|
|
|
#endif /* _LIBBB_UDHCP_H */
|