process.h

来自「compiler」· C头文件 代码 · 共 18 行

H
18
字号
/*@A (C) 1992 Allen I. Holub                                                */
/* This file lets us use an ANSI #include <process.h> in a UNIX program */
#ifdef MSDOS

This message deliberately generates an error under MS-DOS. You should use the
process.h that comes with your compiler, not the current file. You will get
the current version of the file only if you compiler searches the /include
directory for the compiler sources BEFORE it searches the default include
directory.  If this is the case, either change the search order in your
INCLUDE environment so that the compiler will get the real process.h or delete
the current file.

#else
/* This file normally contains prototypes for system(), exec(), etc.
 * There is no equivalant UNIX #include file.
 */
#endif

⌨️ 快捷键说明

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