vfork.c
来自「基于4个mips核的noc设计」· C语言 代码 · 共 13 行
C
13 行
/* Emulate vfork using just plain fork, for systems without a real vfork. This function is in the public domain. */#include "ansidecl.h"extern int fork PARAMS ((void));intvfork (){ return (fork ());}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?