summaryrefslogtreecommitdiffstats
path: root/freebsd/include
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-27 10:26:50 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-30 16:06:41 +0200
commitb6f6deb88310f5e69059598d54c906769a9bf12a (patch)
tree8a9e718ca169f55ce8dea26bd185be12cc817fb4 /freebsd/include
parentDirectly use <sys/types.h> provided by Newlib (diff)
downloadrtems-libbsd-b6f6deb88310f5e69059598d54c906769a9bf12a.tar.bz2
Directly use <sys/_types.h> provided by Newlib
Diffstat (limited to 'freebsd/include')
-rw-r--r--freebsd/include/arpa/inet.h2
-rw-r--r--freebsd/include/err.h2
-rw-r--r--freebsd/include/netdb.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/freebsd/include/arpa/inet.h b/freebsd/include/arpa/inet.h
index d8d8e0ea..1078521c 100644
--- a/freebsd/include/arpa/inet.h
+++ b/freebsd/include/arpa/inet.h
@@ -61,7 +61,7 @@
/* External definitions for functions in inet(3). */
#include <sys/cdefs.h>
-#include <rtems/bsd/sys/_types.h>
+#include <sys/_types.h>
/* Required for byteorder(3) functions. */
#include <machine/endian.h>
diff --git a/freebsd/include/err.h b/freebsd/include/err.h
index 81ff4421..f47b0038 100644
--- a/freebsd/include/err.h
+++ b/freebsd/include/err.h
@@ -41,7 +41,7 @@
* __va_list from <sys/_types.h> and use it.
*/
#include <sys/cdefs.h>
-#include <rtems/bsd/sys/_types.h>
+#include <sys/_types.h>
__BEGIN_DECLS
void err(int, const char *, ...) __dead2 __printf0like(2, 3);
diff --git a/freebsd/include/netdb.h b/freebsd/include/netdb.h
index baf96f6f..2c2e4b3f 100644
--- a/freebsd/include/netdb.h
+++ b/freebsd/include/netdb.h
@@ -58,7 +58,7 @@
#define _NETDB_H_
#include <sys/cdefs.h>
-#include <rtems/bsd/sys/_types.h>
+#include <sys/_types.h>
#ifndef _SIZE_T_DECLARED
typedef __size_t size_t;