Dash:
[t2.git] / package / base / dietlibc / a.out.h.patch
blob2420d897444692674607ea32ab58511ecc615523
2 Needed for util-linux/more, huh?
4 - Rene Rebe <rene@exactcode.de>
6 --- ./include/a.out.h 2005-12-29 16:21:21.231999000 +0000
7 +++ ./include/a.out.h 2006-01-01 10:38:32.000000000 +0000
8 @@ -0,0 +1,27 @@
9 +#ifndef __A_OUT_GNU_H__
10 +#define __A_OUT_GNU_H__
12 +enum machine_type
14 + M_OLDSUN2 = 0,
15 + M_68010 = 1,
16 + M_68020 = 2,
17 + M_SPARC = 3,
18 + M_386 = 100,
19 + M_MIPS1 = 151,
20 + M_MIPS2 = 152
21 +};
23 +/* Code indicating object file or impure executable. */
24 +#define OMAGIC 0407
25 +/* Code indicating pure executable. */
26 +#define NMAGIC 0410
27 +/* Code indicating demand-paged executable. */
28 +#define ZMAGIC 0413
29 +/* This indicates a demand-paged executable with the header in the text.
30 + The first page is unmapped to help trap NULL pointer references. */
31 +#define QMAGIC 0314
32 +/* Code indicating core file. */
33 +#define CMAGIC 0421
35 +#endif /* __A_OUT_GNU_H__ */