wait.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 13 行

C
13
字号
#if	!defined(lint) && defined(SCCSIDS)static char sccsid[] = "@(#)wait.c 1.1 92/07/30 Copyright (C) 1986 Sun Microsystems, Inc";#endif#include <sys/wait.h>pid_twait(status)	union wait *status;{	return ((pid_t)wait4(0, status, 0, (struct rusage *)0));}

⌨️ 快捷键说明

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