const.h

来自「MINIX2.0操作系统源码 MINIX2.0操作系统源码」· C头文件 代码 · 共 30 行

H
30
字号
/*
inet/const.h

Created:	Dec 30, 1991 by Philip Homburg
*/

#ifndef INET__CONST_H
#define INET__CONST_H

#ifndef DEBUG
#define DEBUG	0
#endif

#ifndef NDEBUG
#define NDEBUG	(!DEBUG)
#endif

#define printf	printk

#define where()	printf("%s, %d: ", __FILE__, __LINE__)

#define NW_SUSPEND	SUSPEND
#define NW_OK		OK

#define THIS_PROC       INET_PROC_NR

#define BUF_S		512

#endif /* INET__CONST_H */

⌨️ 快捷键说明

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