From fb3f34b04fc687c4a1fee59eb0831eae88ce0255 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Fri, 12 Apr 2019 22:59:26 +0200 Subject: [PATCH] Revert "Work around nyacc #define parsing/evaluation bug." This reverts commit 7e8dfb474340b2fd809ee54e4d816b4a4275364d. --- lib/linux/time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linux/time.c b/lib/linux/time.c index 910b5634..e33fe483 100644 --- a/lib/linux/time.c +++ b/lib/linux/time.c @@ -22,7 +22,7 @@ #include #include -#if defined (SYS_time) +#if SYS_time time_t time (time_t * result) @@ -30,7 +30,7 @@ time (time_t * result) return _sys_call1 (SYS_time, (long) result); } -#elif defined (SYS_gettimeofday) +#elif SYS_gettimeofday #include