Subversion Repositories tendra.SVN

Rev

Rev 6 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 7u83 1
#pragma TenDRA begin
2
#pragma TenDRA directive assert allow
3
#pragma TenDRA directive unassert allow
4
#pragma TenDRA directive include_next allow
5
#pragma TenDRA longlong type allow
6
#pragma TenDRA extra type definition allow
7
#pragma TenDRA no external declaration allow
8
#pragma TenDRA incompatible type qualifier allow
9
 
10
/* Put target-dependent macro definitions here */
11
 
12
#ifndef __NO_BUILTIN_ASSERTIONS
13
#assert machine(i386)
14
#assert cpu(i386)
15
#assert system(unix)
16
#assert system(winnt)
17
#unassert lint
18
#endif
19
 
20
#define i386		1
21
#define __i386		1
22
#define __i386__	1
23
#define _X86_		1
24
#define _WIN32		1
25
#define __CYGWIN32__	1
26
#define __WINNT		1
27
 
28
/* macros to match GNU C extensions used in headers */
29
 
30
#ifndef __inline__
31
#pragma TenDRA keyword __inline__ for inline
32
#endif
33
 
34
#ifndef __signed__
35
#define __signed__	signed
36
#endif
37
 
38
#ifndef __attribute__
39
#define __attribute__(p)
40
#endif
41
 
42
/* gcc has alloca builtin */
43
#include <alloca.h>