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

📄 unixlib.h

📁 早期freebsd实现
💻 H
字号:
/* "unixlib.h"	--  limited substitute for VAX C V3.x's <unixlib.h>, * for use with VAX C V2.x and/or GNU C when building gawk. *//* declare the global environ[] array */#ifdef VAXCextern char noshare **environ;#else# ifdef __GNUC__#  define environ $$PsectAttributes_NOSHR$$environ# endifextern char **environ;#endif/* miscellaneous Unix emulation routines available in VAXCRTL */char *getenv(), *getcwd();char *ecvt(), *fcvt(), *gcvt();int getpid(), getppid();unsigned getuid();#ifndef _stdlib_h	/* gcc's stdlib.h has these with conflicting types */unsigned getgid(), getegid(), geteuid();#endifint setgid(), setuid();		/* no-ops */

⌨️ 快捷键说明

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