我发生了一个奇怪的错误,如果我在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
。