libbb_udhcp.h

来自「arm9200t上的一个叫busybox的东西」· C头文件 代码 · 共 55 行

H
55
字号
/* libbb_udhcp.h - busybox compatability wrapper *//* bit of a hack, do this no matter what the order of the includes. * (for busybox) */#ifdef CONFIG_INSTALL_NO_USR#undef DEFAULT_SCRIPT#define DEFAULT_SCRIPT  "/share/udhcpc/default.script"#endif#ifndef _LIBBB_UDHCP_H#define _LIBBB_UDHCP_H#ifdef IN_BUSYBOX#include "busybox.h"#ifdef CONFIG_FEATURE_UDHCP_SYSLOG#define UDHCP_SYSLOG#endif#ifdef CONFIG_FEATURE_UDHCP_DEBUG#define UDHCP_DEBUG#endif#define COMBINED_BINARY#include "version.h"#define xfopen bb_xfopen#else /* ! BB_VER */#include <stdlib.h>#include <stdio.h>#include <sys/sysinfo.h>#define TRUE			1#define FALSE			0#define xmalloc malloc#define xcalloc callocstatic inline FILE *xfopen(const char *file, const char *mode){	FILE *fp;	if (!(fp = fopen(file, mode))) {		perror("could not open input file");		exit(0);	}	return fp;}#endif /* BB_VER */#endif /* _LIBBB_UDHCP_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?