2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __A_OUT_GNU_H__
|
|
|
|
#define __A_OUT_GNU_H__
|
|
|
|
|
2012-10-13 17:46:48 +08:00
|
|
|
#include <uapi/linux/a.out.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-02-08 20:19:28 +08:00
|
|
|
#ifndef __ASSEMBLY__
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef linux
|
|
|
|
#include <asm/page.h>
|
|
|
|
#if defined(__i386__) || defined(__mc68000__)
|
|
|
|
#else
|
|
|
|
#ifndef SEGMENT_SIZE
|
|
|
|
#define SEGMENT_SIZE PAGE_SIZE
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
2008-02-08 20:19:28 +08:00
|
|
|
#endif /*__ASSEMBLY__ */
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* __A_OUT_GNU_H__ */
|