diff options
author | Rui Paulo <rpaulo@FreeBSD.org> | 2015-10-14 04:30:17 +0000 |
---|---|---|
committer | Rui Paulo <rpaulo@FreeBSD.org> | 2015-10-14 04:30:17 +0000 |
commit | b834757ea3bcd1bba3381ff7cab216458d8f7efb (patch) | |
tree | dadb24e00f30aa959ea0981e649b18c668304498 /src/utils/includes.h | |
parent | fbffd80fb2ba16c68f799da68a119d5e69643604 (diff) |
Diffstat (limited to 'src/utils/includes.h')
-rw-r--r-- | src/utils/includes.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/utils/includes.h b/src/utils/includes.h index 6c6ec87d0eaf4..75513fc8c1efd 100644 --- a/src/utils/includes.h +++ b/src/utils/includes.h @@ -17,26 +17,22 @@ #include "build_config.h" #include <stdlib.h> +#include <stddef.h> #include <stdio.h> #include <stdarg.h> #include <string.h> #ifndef _WIN32_WCE -#ifndef CONFIG_TI_COMPILER #include <signal.h> #include <sys/types.h> -#endif /* CONFIG_TI_COMPILER */ #include <errno.h> #endif /* _WIN32_WCE */ #include <ctype.h> -#ifndef CONFIG_TI_COMPILER #ifndef _MSC_VER #include <unistd.h> #endif /* _MSC_VER */ -#endif /* CONFIG_TI_COMPILER */ #ifndef CONFIG_NATIVE_WINDOWS -#ifndef CONFIG_TI_COMPILER #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> @@ -44,7 +40,6 @@ #include <sys/uio.h> #include <sys/time.h> #endif /* __vxworks */ -#endif /* CONFIG_TI_COMPILER */ #endif /* CONFIG_NATIVE_WINDOWS */ #endif /* INCLUDES_H */ |