Revert "Work around nyacc #define parsing/evaluation bug."

This reverts commit 7e8dfb474340b2fd809ee54e4d816b4a4275364d.
This commit is contained in:
Jan Nieuwenhuizen 2019-04-12 22:59:26 +02:00
parent b9b744001a
commit fb3f34b04f
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#include <syscall.h>
#include <time.h>
#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 <sys/time.h>