Add __va_list to <sys/_types.h> for BSD compatibility.  In FreeBSD this
typedef is provided by the various architecture-specific
<machine/_types.h> in a copy and paste manner.

Signed-off-by: Sebastian Huber <sebastian.hu...@embedded-brains.de>
---
 newlib/libc/include/sys/_types.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/newlib/libc/include/sys/_types.h b/newlib/libc/include/sys/_types.h
index 03e1ba3..73f1de6 100644
--- a/newlib/libc/include/sys/_types.h
+++ b/newlib/libc/include/sys/_types.h
@@ -177,4 +177,10 @@ typedef    unsigned short  __nlink_t;
 typedef        long            __suseconds_t;  /* microseconds (signed) */
 typedef        unsigned long   __useconds_t;   /* microseconds (unsigned) */
 
+#ifdef __GNUCLIKE_BUILTIN_VARARGS
+typedef        __builtin_va_list       __va_list;
+#else
+typedef        char *                  __va_list;
+#endif /* __GNUCLIKE_BUILTIN_VARARGS */
+
 #endif /* _SYS__TYPES_H */
-- 
1.8.4.5

_______________________________________________
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Reply via email to