in.h
来自「BCAST Implementation for NS2」· C头文件 代码 · 共 29 行
H
29 行
/* * Dummy header file to include the appropriate in.h for Linux * The situation is pretty messy, and no guarantee it will work. * Use your skills and imagination at your own risk :) * * Thanks to Jonathan Day for the problem report and the solution * *//* * Questions concerning this software should be directed to * Pavlin Ivanov Radoslavov (pavlin@catarina.usc.edu) * * $Id: in.h,v 1.1.1.1 2002/12/11 23:56:07 hodson Exp $ */#include <features.h>#if (defined(__GLIBC__) && (defined(__GLIBC_MINOR__)))#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0)#include "in-glibc-2.0.h"#elif (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 1)#include "in-glibc-2.1.h"#else#include "in-slackware.h"#endif /* __GLIBC__ */#else#include "in-slackware.h"#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?