blob: 4d429c72edcc165f311133e9a9e11de22aeb6dcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#define MIPS_OVERRIDE_ALLOCA
#ifndef __GNUC__
#include <alloca.h>
#else
extern void *alloca ();
#endif
#include "mips/xm-mips.h"
#define USG
#undef HOST_BITS_PER_LONG
#define HOST_BITS_PER_LONG _MIPS_SZLONG
#ifndef inhibit_libc
#include "string.h"
#endif
|