lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 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 |