Remove FSF address from GPL notices
[openocd.git] / src / helper / system.h
blob3fb42c08c15b1e27bd6348580182c4b917d8305d
1 /***************************************************************************
2 * Copyright (C) 2006 by Dominic Rath <Dominic.Rath@gmx.de> *
3 * Copyright (C) 2007-2008 by Øyvind Harboe <oyvind.harboe@zylin.com> *
4 * Copyright (C) 2008 by Spencer Oliver <spen@spen-soft.co.uk> *
5 * Copyright (C) 2009 by Zachary T Welch <zw@superlucidity.net> *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
19 ***************************************************************************/
21 #ifndef SYSTEM_H
22 #define SYSTEM_H
24 /* standard C library header files */
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <assert.h>
29 #include <ctype.h>
30 #include <errno.h>
32 /* +++ AC_HEADER_TIME +++ */
33 #ifdef TIME_WITH_SYS_TIME
34 # include <sys/time.h>
35 # include <time.h>
36 #else
37 # ifdef HAVE_SYS_TIME_H
38 # include <sys/time.h>
39 # else
40 # include <time.h>
41 # endif
42 #endif
43 /* --- AC_HEADER_TIME --- */
45 /* +++ platform specific headers +++ */
46 #ifdef _WIN32
47 #include <winsock2.h>
48 #include <ws2tcpip.h>
49 #include <sys/types.h>
50 #include <sys/stat.h>
51 #endif
52 /* --- platform specific headers --- */
54 #ifdef HAVE_SYS_SOCKET_H
55 #include <sys/socket.h>
56 #endif
57 #ifdef HAVE_POLL_H
58 #include <poll.h>
59 #endif
61 #ifdef __ECOS
62 /* missing from eCos */
63 #ifndef EFAULT
64 #define EFAULT 14 /* Bad address */
65 #endif
66 #endif
68 #ifdef HAVE_NETINET_IN_H
69 #include <netinet/in.h>
70 #endif
71 #ifdef HAVE_SYS_SELECT_H
72 #include <sys/select.h> /* select, FD_SET and friends (POSIX.1-2001) */
73 #endif
74 #ifdef HAVE_SYS_PARAM_H
75 #include <sys/param.h> /* for MIN/MAX macros */
76 #endif
77 #ifdef HAVE_UNISTD_H
78 #include <unistd.h>
79 #endif
80 #ifdef HAVE_FCNTL_H
81 #include <fcntl.h>
82 #endif
84 #ifndef true
85 #define true 1
86 #define false 0
87 #endif
89 #endif /* SYSTEM_H */