-
Notifications
You must be signed in to change notification settings - Fork 0
/
acconfig.h
119 lines (87 loc) · 2.9 KB
/
acconfig.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* $Id: $ */
/* Copyright (C) 1997 Sverre Hvammen Johansen,
* Department of Informatics, University of Oslo.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
@TOP@
/* Additional compiler flags for building shared library objects */
#define PIC_FLAG ""
/* Compiler flag to prevent dynamic linking */
#define LINK_STATIC_FLAG ""
/* How to pass a linker flag through the compiler.*/
#define WL_FLAG ""
/* Define cpu type derived from system type. */
#define CPU_TYPE "???"
/* Define if we have signal sigbus. */
#undef HAVE_SIGBUS
/* Define if we have signal sigfpe. */
#undef HAVE_SIGFPE
/* Define if we have signal sigill. */
#undef HAVE_SIGILL
/* Define if we have signal sigsegv. */
#undef HAVE_SIGSEGV
/* Define if we have signal sigsys. */
#undef HAVE_SIGSYS
/* Define if we have signal sigtrap. */
#undef HAVE_SIGTRAP
/* Define the system type we are running. */
#define SYSTEM_TYPE "???"
/* Define manufacturer derived from system type. */
#define MANUFACTURER "???"
/* Define os type derived from system type. */
#define OS_TYPE "???"
/* Define os type including version derived from system type. */
#define OS_TYPE_VERSION "???"
/* Define if temporary file have to be opened in binary mode. */
#undef OPEN_FILE_IN_BINARY_MODE
/* Define version string */
#undef PACKAGE_VERSION
/* Define version string */
#undef PACKAGE
/* Define if ISO_LATIN is implemented. */
#define ISO_LATIN 1
/* Define input_line_length. */
#define INPUT_LINE_LENGTH 80
/* Define output line length. */
#define OUTPUT_LINE_LENGTH 80
/* Define lines per page. */
#define LINES_PER_PAGE 60
/* Define the size of the heap */
#define DYNMEMSIZEKB 512
/* Define if dump is implemented. */
#undef DUMP
/* Define if the implementation conforms to IEEE-754. */
#define FLOAT_IEEE 1
/* Define if the implementation conforms to the vax architecture. */
#undef FLOAT_VAX
/* Define MIN_DOUBLE and MAX_DOUBLE */
#define MAX_DOUBLE DBL_MAX
#define MIN_DOUBLE DBL_MIN
/* Define alignment */
#define ALIGNMENT 8
@BOTTOM@
/* Define the adress of the first data location. */
#define FIRST_DATA_LOCATION ((int)(&__start_data_segment))
/* Define MAX_INT */
#if SIZEOF_LONG == 8
#define MAX_INT (~(1L<<63))
#else
#define MAX_INT (~(1L<<31))
#endif
/* Define TYPE_32_INT */
#if SIZEOF_LONG == 8
#define TYPE_32_INT int
#else
#define TYPE_32_INT long
#endif