Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 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 no external declaration allow
7
 
8
#ifndef __NO_BUILTIN_ASSERTIONS
9
#assert machine(i386)
10
#assert cpu(i386)
11
#assert system(unix)
12
#assert system(FreeBSD)
13
#unassert lint
14
#endif
15
 
16
#define unix		1
17
#define i386		1
18
#define __unix		1
19
#define __i386		1
20
#define __unix__	1
21
#define __i386__	1
22
#define __FreeBSD__	2
23
 
24
#ifndef __inline
25
#pragma TenDRA keyword __inline for inline
26
#endif
27
 
28
#ifndef __signed
29
#define __signed	signed
30
#endif