Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-09-06 07:21:16 +0300
committerCorinna Vinschen <corinna@vinschen.de>2018-09-06 15:10:42 +0300
commit81e0841dbc8f3da528c515ad7a07d79309ddb374 (patch)
tree88d87a3369d95922ba565c8091a8005e2af65c27 /newlib
parentf92a4c5d2da377513f59b59290638b7a40cf38ce (diff)
xdr_private.h needs sys/types.h for u_char
u_char is defined in sys/types.h, which doesn't appear to get included, at least in my environments. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/xdr/xdr_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/xdr/xdr_private.h b/newlib/libc/xdr/xdr_private.h
index 98c9daada..dbdaaf0f0 100644
--- a/newlib/libc/xdr/xdr_private.h
+++ b/newlib/libc/xdr/xdr_private.h
@@ -27,6 +27,7 @@
#include <stdarg.h>
#include <stdint.h>
#include <sys/param.h>
+#include <sys/types.h>
/* avoid including stdio header here */
#ifndef __VALIST