#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include "rs6000.h"
Go to the source code of this file.
#define AOUT_MAGIC 0x010b |
Value:((((
unsigned char *)(
x))[0] << 8) \
+ ((
unsigned char *)(
x))[1])
Definition at line 22 of file hack-coff.c.
Value:((((
unsigned char *)(
x))[0] << 24) \
+ (((
unsigned char *)(
x))[1] << 16) \
+ (((
unsigned char *)(
x))[2] << 8) \
+ ((
unsigned char *)(
x))[3])
Definition at line 26 of file hack-coff.c.
#define put_16be |
( |
|
x, |
|
|
|
v |
|
) |
| |
Value:(((
unsigned char *)(
x))[0] = (
v) >> 8, \
((
unsigned char *)(
x))[1] = (
v) & 0xff)
Definition at line 24 of file hack-coff.c.