哪个头文件定义了 '_IO_*' ?

zhangsc 2009-06-04 02:05:00
在Solaris 10下编译下面的文件:
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/termios.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#define _IO_UNBUFFERED __SNBF
#define _IO_LINE_BUF __SLBF
#define _IO_file_flags _flags
#define BUFFERSZ(fp) (fp)->_bf._size
void pr_stdio(const char *, FILE *);

int
main(void)
{
FILE *fp;

fputs("enter any character\n", stdout);
if (getchar() == EOF)
err_sys("getchar error");
fputs("one line to standard error\n", stderr);

pr_stdio("stdin", stdin);
pr_stdio("stdout", stdout);
pr_stdio("stderr", stderr);

if ((fp = fopen("/etc/motd", "r")) == NULL)
err_sys("fopen error");
if (getc(fp) == EOF)
err_sys("getc error");
pr_stdio("/etc/motd", fp);
exit(0);
}

void pr_stdio(const char *name, FILE *fp)
{
printf("stream = %s, ", name);

/*
* The following is nonportable.
*/
if (fp->_IO_file_flags & _IO_UNBUFFERED)
printf("unbuffered");
else if (fp->_IO_file_flags & _IO_LINE_BUF)
printf("line buffered");
else /* if neither of above */
printf("fully buffered");
printf(", buffer size = %d\n", BUFFERSZ(fp));
}


在编译的过程中产生下面的错误:

In function 'pr_stdio':
error:structure has no member named '_IO_file_flags'
error:'_IO_UNBUFFERED' undeclared
error:'_IO_LINE_BUF' undeclared
error:structure has no member named '_IO_buf_end'
error:structure has no member named '_IO_buf_base'

为什么会产生上面的错误呢?是不是哪个头文件没有引进来?
谢谢!
...全文
103 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
iisbsd 2009-06-04
  • 打赏
  • 举报
回复
源代码里面说了:

/*
* The following is nonportable.
*/

检查一下你的机器上的/usr/include/stdio.h和/usr/include/libio.h,看看相应的字段应该是什么名字。

23,121

社区成员

发帖
与我相关
我的任务
社区描述
Linux/Unix社区 应用程序开发区
社区管理员
  • 应用程序开发区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧