1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/udhcp-0.9.8-2/libbb_udhcp.h
2024-07-22 01:58:46 -03:00

30 lines
432 B
C
Executable File

/* libbb_udhcp.h - busybox compatability wrapper */
#ifndef _LIBBB_UDHCP_H
#define _LIBBB_UDHCP_H
#ifdef BB_VER
#include "libbb.h"
#ifdef CONFIG_FEATURE_UDHCP_SYSLOG
#define SYSLOG
#endif
#ifdef CONFIG_FEATURE_UDHCP_DEBUG
#define DEBUG
#endif
#define COMBINED_BINARY
#define VERSION "0.9.8-pre"
#else /* ! BB_VER */
#define TRUE 1
#define FALSE 0
#define xmalloc malloc
#endif /* BB_VER */
#endif /* _LIBBB_UDHCP_H */