blob: 99bc53c2bc50a912e0a9b52f3426e728764ab235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Configuration for GCC for Intel i386 running SCO. */
#include "i386/xm-sysv3.h"
/* Big buffers improve performance. */
#define IO_BUFFER_SIZE (0x8000 - 1024)
/* OpenServer provides no sys_siglist,
but does offer the same data under another name. */
#define sys_siglist _sys_siglist
#undef SYS_SIGLIST_DECLARED
#define SYS_SIGLIST_DECLARED
/* If not compiled with GNU C, use the portable alloca. */
#ifndef __GNUC__
#define USE_C_ALLOCA
#endif
|