gpt4 book ai didi

c - 为什么我不能在 Linux 中使用函数 grantpt?

转载 作者:太空宇宙 更新时间:2023-11-04 08:32:11 26 4
gpt4 key购买 nike

我想在我的程序中使用函数 grantpt。我包括它的头文件 <stdlib.h> , 但编译器仍然给我 warning: implicit declaration of grantpt ,这意味着它找不到 stdlib.h 中的声明.我 grep头文件并找到声明:

stdlib.h:920:extern int grantpt (int __fd) __THROW;  

而我的glibc版本是2.17,官方手册说这个功能从2.1版本开始就有了。

这是我的测试程序:

#include <stdio.h>
#include <stdlib.h>

typedef unsigned long u_l;

int main(){
int errno = grantpt(1);
printf("errno = %d\n", errno);
return 0;
}

非常感谢!

最佳答案

#define _XOPEN_SOURCE
#include <stdlib.h>
#include <stdio.h>
//#include<sys/poll.h>

typedef unsigned long u_l;

int main()
{
int errno = grantpt(1);

printf("errno = %d\n", errno);

return 0;
}

此代码在没有警告的情况下编译

参见 Man page明确表示您需要在包含 stdlib.h 以访问 grantpt()

之前定义 _XOPEN_SOURCE

关于c - 为什么我不能在 Linux 中使用函数 grantpt?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27819718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com