Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /trunk/src/lib/machines/linux/amd64/startup/ansi.h – Rev 6

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | 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
#pragma TenDRA unknown directive allow
10
 
11
/* Put target-dependent macro definitions here */
12
 
13
#ifndef __NO_BUILTIN_ASSERTIONS
14
#assert machine(i386)
15
#assert cpu(i386)
16
#assert system(unix)
17
#assert system(posix)
18
#unassert lint
19
#endif
20
 
21
#define unix		1
22
#define i386		1
23
#define linux		1
24
#define __unix		1
25
#define __i386		1
26
#define __linux		1
27
#define __unix__	1
28
#define __i386__	1
29
#define __linux__	1
30
#define __i486__	1
31
 
32
#ifdef __LINUX_USE_ELF
33
#define __ELF__		1
34
#define _I386_BYTEORDER_H
35
#endif
36
 
37
/* macros to match GNU C extensions used in headers */
38
 
39
#ifndef __inline__
40
#pragma TenDRA keyword __inline__ for inline
41
#endif
42
#define _EXTERN_INLINE extern __inline__
43
 
44
#ifndef __signed__
45
#define __signed__	signed
46
#endif
47
 
48
#ifndef __attribute__
49
#define __attribute__(xyz)
50
#endif
51
 
52
/* gcc has alloca builtin */
53
#include <alloca.h>