我是靠谱客的博主 优美黑猫,最近开发中收集的这篇文章主要介绍Linux怎么编译.h头文件,在linux下调用syscalls.h头文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

终于开始看 The C 的第八章 The UNIX System Interface 了!这是比较激动人心的一章,学过之后就可以开始写 Unix 程序了,比如打印目录,查看文件大小、文件属性等,也就是说可以写一些比较实用的小程序了。而且一些系统函数,例如 read(),write()等,是 unix 编程的基础。另外,也讲解了 malloc 的一种实现方法,我想这将会加深我对内存的理解。

然而,第一个例子就让我傻眼了。

#include "syscalls.h"

main()

{

char buf[BUFSIZ];

int n;

while ((n = read(0, buf, BUFSIZ)) > 0)

write(1, buf, n);

return 0;

}

编译时出错

k@bian:~$ gcc -Wall test.c

test.c:1:22: syscalls.h: No such file or directory

test.c:5: error: `BUFSIZ' undeclared (first use in this function)

test.c:8: warning: implicit declaration of function `read'

test.c:9: warning: implicit declaration of function `write'

书上说 read()和write(),还有BUFSIZ都是 syscalls.h 里定义的。

我打开 /usr/include/ 一看,没有syscalls.h !不过有一个 syscall.h,换上这个还是提示错误。

Linux毕竟不是Unix,我当时就有点害怕这一章学不下去。这种时候,当然要google!

没有直接查到解决办法,却知道了可以用man来查

man read

哈哈,有了!赫然写着

#include

ssize_t read(int fd, void *buf, size_t count);

但是还有问题

k@bian:~$ gcc -Wall test.c

test.c:5: error: `BUFSIZ' undeclared (first use in this function)

这时我突然想到一个办法,用 grep !

k@bian:~$ grep BUFSIZ /usr/include/*

/usr/include/_G_config.h:#define _G_BUFSIZ 8192

/usr/include/libio.h:#define _IO_BUFSIZ _G_BUFSIZ

/usr/include/stdio.h:#ifndef BUFSIZ

/usr/include/stdio.h:# define BUFSIZ _IO_BUFSIZ

/usr/include/stdio.h:   Else make it use buffer BUF, of size BUFSIZ.  */

原来在stdio.h里!

程序改成这样,问题解决

#include

#include

main()

{

char buf[BUFSIZ];

int n;

while ((n = read(0, buf, BUFSIZ)) > 0)

write(1, buf, n);

return 0;

}

好!可以往下学了:D

还找到这个,在Linux下编程肯定有用的 The GNU C Library Manual。有几种格式提供下载,建议下载formatted in HTML (976K gzipped tar file) with one web page per node.

最后

以上就是优美黑猫为你收集整理的Linux怎么编译.h头文件,在linux下调用syscalls.h头文件的全部内容,希望文章能够帮你解决Linux怎么编译.h头文件,在linux下调用syscalls.h头文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部