]> git.pld-linux.org Git - packages/bcc.git/blob - dev86-long.patch
- rel 6
[packages/bcc.git] / dev86-long.patch
1 diff -up dev86-0.16.17/ld/x86_aout.h.long dev86-0.16.17/ld/x86_aout.h
2 --- dev86-0.16.17/ld/x86_aout.h.long    2003-01-28 23:17:14.000000000 +0100
3 +++ dev86-0.16.17/ld/x86_aout.h 2009-02-19 11:37:10.000000000 +0100
4 @@ -11,10 +11,11 @@
5  /* If the host isn't an x86 all bets are off, use chars. */
6  #if defined(i386) || defined(__BCC__) || defined(MSDOS)
7  typedef long Long;
8 -#define __OUT_OK 1
9  #else
10 -typedef char Long[4];
11 +#include <stdint.h>
12 +typedef int32_t Long;
13  #endif
14 +#define __OUT_OK 1
15  
16  struct exec {                  /* a.out header */
17    unsigned char        a_magic[2];     /* magic number */
This page took 0.079224 seconds and 3 git commands to generate.