diff options
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/time.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/newlib/libc/include/time.h b/newlib/libc/include/time.h index f83c38d05..a50bd608f 100644 --- a/newlib/libc/include/time.h +++ b/newlib/libc/include/time.h @@ -202,7 +202,11 @@ extern "C" { /* Flag indicating time is "absolute" with respect to the clock associated with a time. */ -#define TIMER_ABSTIME 4 +#define TIMER_ABSTIME 4 +#ifdef __CYGWIN__ +# define TIMER_RELTIME 0 /* For compatibility with HP/UX, Solaris, + others? */ +#endif /* Manifest Constants, P1003.4b/D8, p. 55 */ |