From 7b2c3621901dbb0a3535f8056a2eadb9095a5ad2 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 24 Aug 2017 15:26:03 +0200 Subject: Make _CLOCK_T_ system configurable Let systems optionally provide the _CLOCK_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 98b93ce71..d27979c9d 100644 --- a/newlib/libc/include/sys/_types.h +++ b/newlib/libc/include/sys/_types.h @@ -180,7 +180,10 @@ typedef _LOCK_RECURSIVE_T _flock_t; typedef void *_iconv_t; #endif +#ifndef __machine_clock_t_defined #define _CLOCK_T_ unsigned long /* clock() */ +#endif + typedef _CLOCK_T_ __clock_t; #define _TIME_T_ long /* time() */ -- cgit v1.2.3