Check-in modifications made by HGM so far
[capablanca.git] / lasker-2.2.3 / src / includes.h
1 /*
2    Copyright (C) Andrew Tridgell 2002
3    
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8    
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13    
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19
20 #define _GNU_SOURCE
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <stdarg.h>
24 #include <string.h>
25 #include <ctype.h>
26 #include <signal.h>
27 #include <time.h>
28 #include <math.h>
29 #include <errno.h>
30 #include <unistd.h>
31 #include <dirent.h>
32 #include <fcntl.h>
33 #include <dlfcn.h>
34 #include <stddef.h>
35
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
38 #include <arpa/telnet.h>
39 #include <netdb.h>
40
41 #include <sys/stat.h>
42 #include <sys/socket.h>
43 #include <sys/time.h>
44 #include <sys/file.h>
45 #include <sys/resource.h>
46 #include <sys/ioctl.h>
47 #include <sys/wait.h>
48 #include <sys/mman.h>
49
50 #include "autoconfig.h"
51 #include "malloc.h"
52 #include "parsers/genparser.h"
53 #include "common.h"
54 #include "vers.h"
55 #include "variable.h"
56 #include "command.h"
57 #include "gics.h"
58 #include "tdb/tdb.h"
59 #include "ficsmain.h"
60 #include "config.h"
61 #include "network.h"
62 #include "board.h"
63 #include "gamedb.h"
64 #include "lists.h"
65 #include "iset.h"
66 #include "playerdb.h"
67 #include "ratings.h"
68 #include "utils.h"
69 #include "talkproc.h"
70 #include "comproc.h"
71 #include "pending.h"
72 #include "multicol.h"
73 #include "movecheck.h"
74 #include "obsproc.h"
75 #include "formula.h"
76 #include "gameproc.h"
77 #include "matchproc.h"
78 #include "md5.h"
79 #include "news.h"
80 #include "globals.h"
81
82 #include "proto.h"