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
/*
2
    STARTUP FILE FOR COMPILATION MODE XP
3
 
4
    Xp represents ANSI C with a few extra portability checks.  Nothing
5
    too drastic.  This mode is suitable for checking portability to
6
    32-bit machines.
7
*/
8
#pragma TenDRA declaration block Xp__startup begin
9
 
10
#pragma TenDRA begin
11
 
12
#include "../Literal/ansi.pf"
13
#include "../Promotion/ansi.pf"
14
 
15
#define __ANDF__ 1
16
#define __TenDRA__ 1
17
#define __OPENLINT__ 1
18
 
19
#pragma TenDRA conversion analysis (int-pointer explicit) warning
20
#pragma TenDRA function pointer as pointer allow
21
#pragma TenDRA weak prototype analysis on
22
#pragma TenDRA implicit function declaration warning
23
#pragma TenDRA implicit int type for function return warning
24
#pragma TenDRA incompatible interface declaration warning
25
#pragma TenDRA incompatible void return warning
26
#pragma TenDRA fall into case warning
27
#pragma TenDRA unreachable code warning
28
 
29
#pragma TenDRA linkage resolution : (internal) warning
30
 
31
#pragma TenDRA unknown pragma warning
32
 
33
#pragma TenDRA declaration block end