📄 config_vms.h
字号:
/* Configuration file for OpenVMS */#define HAVE_STRING_H 1#define HAVE_MEMCHAR#define HAVE_STRERROR#define HAVE_STDLIB_H 1#define HAVE_UNISTD_H 1#define STDC_HEADERS#define HAVE_DIRENT_H 1#define VERSION "2.4.1"/* Avoid namespace collision with operating system supplied C library *//* Make sure we have the C-RTL definitions */#include <unistd.h>#include <stdio.h>/* Now override everything with the GNU version */#ifdef VMS# define getopt gnu_getopt# define optarg gnu_optarg# define optopt gnu_optopt# define optind gnu_optind# define opterr gnu_opterr#endif#if defined(VMS) && defined(__DECC) /* need function prototype */#if (__DECC_VER<50790004) /* have an own one */char *alloca(unsigned int);#else#define alloca __ALLOCA#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -