From a9c8434527cc1115bd410a9d4c3b6aab56282a61 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 8 Feb 2018 13:00:42 +0100 Subject: [PATCH] Make _CLOCKID_T_ system configurable Let systems optionally provide the _CLOCKID_T_ type via . Signed-off-by: Sebastian Huber --- newlib/libc/include/sys/_types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/newlib/libc/include/sys/_types.h b/newlib/libc/include/sys/_types.h index 72e1dc17a..d8e8c0b52 100644 --- a/newlib/libc/include/sys/_types.h +++ b/newlib/libc/include/sys/_types.h @@ -193,7 +193,10 @@ typedef _CLOCK_T_ __clock_t; #endif typedef _TIME_T_ __time_t; +#ifndef __machine_clockid_t_defined #define _CLOCKID_T_ unsigned long +#endif + typedef _CLOCKID_T_ __clockid_t; #define _TIMER_T_ unsigned long