⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getpagsz.h

📁 GNU Sed GNU Sed GNU Sed
💻 H
字号:
/* TimF@microsoft.com:	19-MAR-92  Port to Microsoft's Windows NT (tm) */

#ifdef BSD
#ifndef BSD4_1
#define HAVE_GETPAGESIZE
#endif
#endif

#ifndef HAVE_GETPAGESIZE

#ifdef VMS
#include "param.h"
#else
#ifndef	WINDOWSNT
#include <sys/param.h>
#endif	/* !WINDOWSNT */
#endif

#ifdef EXEC_PAGESIZE
#define getpagsz() EXEC_PAGESIZE
#else
#ifdef NBPG
#define getpagsz() NBPG * CLSIZE
#ifndef CLSIZE
#define CLSIZE 1
#endif /* no CLSIZE */
#else /* no NBPG */
#ifdef	WINDOWSNT
#define getpagsz()	4096
#else /* !WINDOWSNT */
#define getpagsz() NBPC
#endif /* !WINDOWSNT */
#endif /* no NBPG */
#endif /* no EXEC_PAGESIZE */

#endif /* not HAVE_GETPAGESIZE */

⌨️ 快捷键说明

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