a.out.h 354 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __A_OUT_GNU_H__
  3. #define __A_OUT_GNU_H__
  4. #include <uapi/linux/a.out.h>
  5. #ifndef __ASSEMBLY__
  6. #ifdef linux
  7. #include <asm/page.h>
  8. #if defined(__i386__) || defined(__mc68000__)
  9. #else
  10. #ifndef SEGMENT_SIZE
  11. #define SEGMENT_SIZE PAGE_SIZE
  12. #endif
  13. #endif
  14. #endif
  15. #endif /*__ASSEMBLY__ */
  16. #endif /* __A_OUT_GNU_H__ */