ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/crossedit/include/Ansi.h
Revision: 1.2
Committed: Sun Aug 13 17:16:02 2006 UTC (17 years, 10 months ago) by elmex
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Made server compile with C++.
Removed cfanim plugin and crossedit.
C++ here we come.

File Contents

# User Rev Content
1 root 1.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 */