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