From d6e4c56c2bc66368a7542205aeeb855f4069e5b9 Mon Sep 17 00:00:00 2001 From: Ian Lepore Date: Tue, 25 Jul 2017 17:39:06 +0000 Subject: [PATCH] Use the MD __size_t to avoid a dependency on/include of non-MD header files. This should fix the compilation of the lua 5.3.4 port, among others. Reported by: Russell Haley --- sys/arm/include/ucontext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/include/ucontext.h b/sys/arm/include/ucontext.h index 3cc511341f6..67a640f0cf0 100644 --- a/sys/arm/include/ucontext.h +++ b/sys/arm/include/ucontext.h @@ -78,7 +78,7 @@ typedef struct { * Originally, rest of this structure was named __fpu, 35 * 4 bytes * long, never accessed from kernel. */ - size_t mc_vfp_size; + __size_t mc_vfp_size; void *mc_vfp_ptr; unsigned int mc_spare[33]; } mcontext_t;