简单程序:
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netdb.h>
int main(int argc, char **argv)
{
int ret = rexec((char**) 0, "", "", "", 0);
return 0;
}
文件夹:
$ g++ -o rexec -D_XOPEN_SOURCE_EXTENDED rexec.cpp
rexec.cpp: In function 'int main(int, char**)':
rexec.cpp:10:49: error: 'rexec' was not declared in this scope
最佳答案
这些函数不在POSIX.1-2001中。首先是rexec()函数
出现在4.2BSD中,出现在bsd、Solaris和许多
其他系统。rexec_af()函数更新,而且更少
广泛传播。
来源:“man rexec”
关于c - 在HP UX中找不到rexec,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12955644/