relrhack.h (523B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #ifndef __RELRHACK_H__ 6 #define __RELRHACK_H__ 7 8 #include <elf.h> 9 10 #define DT_RELRHACK_BIT 0x8000000 11 12 #ifndef DT_RELRSZ 13 # define DT_RELRSZ 35 14 #endif 15 #ifndef DT_RELR 16 # define DT_RELR 36 17 #endif 18 #ifndef DT_RELRENT 19 # define DT_RELRENT 37 20 #endif 21 #ifndef SHR_RELR 22 # define SHT_RELR 19 23 #endif 24 25 #endif /* __RELRHACK_H__ */