summaryrefslogtreecommitdiffstats
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-08 10:48:18 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-08 10:48:18 +0100
commitf78b52ba24d8d294869cd013dcc4cd5d4a65cea7 (patch)
tree2c3b54a688ba99d0d1ddcb1b15a46520f73e7d9e /src/os_unix.c
parentaca12fd89b082dd9cc12ae085a84f1805747bbdf (diff)
patch 8.2.5067: timer_create is not available on every Mac systemv8.2.5067
Problem: Timer_create is not available on every Mac system. (Hisashi T Fujinaka) Solution: Adjust #ifdef.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 72f80c95dc..766deac9a8 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -8247,7 +8247,7 @@ xsmp_close(void)
#endif // USE_XSMP
#if defined(FEAT_RELTIME) || defined(PROTO)
-# if defined(HAVE_TIMER_CREATE) || defined(MACOS_X)
+# if defined(HAVE_TIMER_CREATE)
/*
* Implement timeout with timer_create() and timer_settime().
*/