我写了一个包含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;应该叫。是否有任何电话订单或优先顺序?
答案 0 :(得分:1)
一个包括另一个包括下一个,直到包含定义的那个。