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