ioutil: make the file compile on MacOS
[fw/openocd] / src / helper / system.h
index 07b0cb9f2ffce25e2dde2792f34ad9184c11498a..82d0cae7e8b1027d0134c30f60efa6a25597762e 100644 (file)
  *   Free Software Foundation, Inc.,                                       *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
+
 #ifndef SYSTEM_H
 #define SYSTEM_H
 
-// standard C library header files
+/* standard C library header files */
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -30,7 +31,7 @@
 #include <ctype.h>
 #include <errno.h>
 
-// +++ AC_HEADER_TIME +++
+/* +++ AC_HEADER_TIME +++ */
 #ifdef TIME_WITH_SYS_TIME
 # include <sys/time.h>
 # include <time.h>
 #  include <time.h>
 # endif
 #endif
-// --- AC_HEADER_TIME ---
+/* --- AC_HEADER_TIME --- */
 
-// +++ platform specific headers +++
-#if BUILD_ECOSBOARD == 1
-#include <pkgconf/system.h>
-#endif
+/* +++ platform specific headers +++ */
 #ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
+#include <sys/types.h>
+#include <sys/stat.h>
 #endif
-// --- platform specific headers ---
+/* --- platform specific headers --- */
 
 #ifdef HAVE_SYS_SOCKET_H
 #include <sys/socket.h>
 #ifdef HAVE_SYS_POLL_H
 #include <sys/poll.h>
 #endif
+
+#ifdef __ECOS
+/* missing from eCos */
+#ifndef EFAULT
+#define EFAULT 14      /* Bad address */
+#endif
+#endif
+
 #ifdef HAVE_NETINET_IN_H
 #include <netinet/in.h>
 #endif
 #ifdef HAVE_SYS_SELECT_H
-#include <sys/select.h> /* select, FD_SET and friends (POSIX.1-2001) */
+#include <sys/select.h>        /* select, FD_SET and friends (POSIX.1-2001) */
 #endif
 #ifdef HAVE_SYS_PARAM_H
-#include <sys/param.h> /* for MIN/MAX macros */
+#include <sys/param.h> /* for MIN/MAX macros */
 #endif
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
@@ -75,4 +83,9 @@
 #include <fcntl.h>
 #endif
 
-#endif // SYSTEM_H
+#ifndef true
+#define true    1
+#define false   0
+#endif
+
+#endif /* SYSTEM_H */