mirror of https://github.com/ipxe/ipxe.git
Hide __attribute__ from doxygen
parent
0eb4d9973c
commit
75a90cb143
|
@ -1,7 +1,17 @@
|
||||||
#ifndef COMPILER_H
|
#ifndef COMPILER_H
|
||||||
#define COMPILER_H
|
#define COMPILER_H
|
||||||
|
|
||||||
/* We export the symbol obj_OBJECT (OBJECT is defined on command-line)
|
/*
|
||||||
|
* Doxygen can't cope with some of the more esoteric areas of C, so we
|
||||||
|
* make its life simpler.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifdef DOXYGEN
|
||||||
|
#define __attribute__(...)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We export the symbol obj_OBJECT (OBJECT is defined on command-line)
|
||||||
* as a global symbol, so that the linker can drag in selected object
|
* as a global symbol, so that the linker can drag in selected object
|
||||||
* files from the library using -u obj_OBJECT.
|
* files from the library using -u obj_OBJECT.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue