openpty()在C ++ Xcode

时间:2015-05-05 03:04:43

标签: c++ c xcode pty

我发生了一个奇怪的错误,如果我在C程序中使用函数openpty()它编译好了但是如果我在C ++程序中有完全相同的代码我得到编译器错误:

error: 'openpty' was not declared in this scope

两个Xcode项目在一个文件中都有完全相同的代码(分别是main.c和main.cpp)。

如何解决此错误?

代码:

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h> 
#include <termios.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/select.h>
#include <string.h>

int main (int argc, const char * argv[]) {
    int gps_fdm, gps_fds;
    char slave_port_name[256];
    int open_res = openpty(&gps_fdm, &gps_fds, slave_port_name, NULL, NULL); // compiler error here
    return 0;
}

*从我试图纳入pty.h的评论中获取建议。不幸的是,这会产生编译器错误error: pty.h: No such file or directory

1 个答案:

答案 0 :(得分:0)

根据man page for openpty(),您不会包含一些假设的&#34; pty.h&#34;。您需要#include <util.h>