| 1 | #ifndef _ELF_H |
|---|---|
| 2 | #include <elf/elf.h> |
| 3 | |
| 4 | # ifndef _ISOMAC |
| 5 | |
| 6 | /* Some information which is not meant for the public and therefore not |
| 7 | in <elf.h>. */ |
| 8 | # include <dl-dtprocnum.h> |
| 9 | # ifdef DT_1_SUPPORTED_MASK |
| 10 | # error DT_1_SUPPORTED_MASK is defined! |
| 11 | # endif |
| 12 | # define DT_1_SUPPORTED_MASK \ |
| 13 | (DF_1_NOW | DF_1_NODELETE | DF_1_INITFIRST | DF_1_NOOPEN \ |
| 14 | | DF_1_ORIGIN | DF_1_NODEFLIB) |
| 15 | |
| 16 | # endif /* !_ISOMAC */ |
| 17 | #endif /* elf.h */ |
| 18 |