为什么linux中有多个fcntl.h?

时间:2016-04-05 06:25:26

标签: c++ c linux gcc header-files

我写了一个包含fcntl.h文件的c程序。我搜索文件并获得如下结果:

[xunyl@localhost csapp]$ find /usr/include/ -name "fcntl.h"
/usr/include/asm/fcntl.h
/usr/include/asm-generic/fcntl.h
/usr/include/linux/fcntl.h
/usr/include/sys/fcntl.h
/usr/include/bits/fcntl.h
/usr/include/fcntl.h

[xunyl@localhost csapp]$ grep -rn "O_RDONLY" /usr/include/
/usr/include/asm-generic/fcntl.h:19:#define O_RDONLY    00000000
/usr/include/linux/cdrom.h:32: *       -    drive = open("/dev/cdrom", O_RDONLY);
/usr/include/linux/cdrom.h:33: *       +    drive = open("/dev/cdrom", O_RDONLY | O_NONBLOCK);
...

当我将/usr/include/asm-generic/fcntl.h放入程序时,我发现gcc调用了#include <fcntl.h>。我只是想知道gcc如何确定哪个&#34; fcntl.h&#34;应该叫。是否有任何电话订单或优先顺序?

1 个答案:

答案 0 :(得分:1)

一个包括另一个包括下一个,直到包含定义的那个。