ioutil: make the file compile on MacOS
[fw/openocd] / src / helper / system.h
index 8ff3532aa856afb6ba1195d7bccdafbc0e42cdf0..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>
@@ -65,7 +63,7 @@
 #ifdef __ECOS
 /* missing from eCos */
 #ifndef EFAULT
-#define        EFAULT 14       /* Bad address */
+#define EFAULT 14      /* Bad address */
 #endif
 #endif
 
 #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>
@@ -86,8 +84,8 @@
 #endif
 
 #ifndef true
-#define true   1
-#define false  0
+#define true    1
+#define false   0
 #endif
 
-#endif // SYSTEM_H
+#endif /* SYSTEM_H */