Subversion Repositories tendra.SVN

Rev

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