如何查出某个宏定义在哪个头文件内?

 

想要查找一个宏定义在哪个文件中,可以使用下面的方法:

 

[sproat@ test]# find /usr/include/ -name *.h | xargs grep 'ORIG_EAX' 
/usr/include/sys/reg.h:# define ORIG_EAX 11
/usr/include/asm/ptrace-abi.h:#define ORIG_EAX 11
 
 
 

你可能感兴趣的:(如何查出某个宏定义在哪个头文件内?)