ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/crossedit/include/Ansi.h
Revision: 1.1.1.1 (vendor branch)
Committed: Fri Feb 3 07:11:46 2006 UTC (18 years, 5 months ago) by root
Content type: text/plain
Branch: UPSTREAM
CVS Tags: UPSTREAM_2006_03_15, LAST_C_VERSION, UPSTREAM_2006_02_22, difficulty_fix_merge_060810_2300, UPSTREAM_2006_02_03
Branch point for: difficulty_fix
Changes since 1.1: +0 -0 lines
Log Message:
initial import

File Contents

# Content
1 /*
2 * Ansi.h - include all ISO/IEC 9899:1990 (E) standard headers
3 * reference: ISO/IEC 9899:1990 (E)
4 */
5
6 #ifndef _Ansi_h
7 #define _Ansi_h
8
9 #include <errno.h>
10 #include <stddef.h>
11 #include <assert.h>
12 #include <ctype.h>
13 #include <locale.h>
14 #include <math.h>
15 #include <setjmp.h>
16 #include <signal.h>
17 #include <stdarg.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <time.h>
22 #include <limits.h>
23 #include <float.h>
24
25 #ifndef EXIT_FAILURE
26 #define EXIT_FAILURE 1
27 #endif
28
29 #endif /* _Ansi_h */