ldso.h 451 B

1234567891011121314151617
  1. #include <features.h>
  2. /* Pull in compiler and arch stuff */
  3. #include <stdlib.h>
  4. #include <stdarg.h>
  5. /* Pull in the arch specific type information */
  6. #include <sys/types.h>
  7. /* Now the ldso specific headers */
  8. #include <ld_elf.h>
  9. #include <ld_syscall.h>
  10. #include <ld_hash.h>
  11. #include <ld_string.h>
  12. /* Pull in the arch specific page size */
  13. #include <asm/page.h>
  14. #ifndef PAGE_SIZE
  15. # define PAGE_SHIFT 12
  16. # define PAGE_SIZE (1UL << PAGE_SHIFT)
  17. #endif