0
0
mirror of https://github.com/vim/vim.git synced 2025-11-05 09:57:25 -05:00

patch 8.2.5133: MacOS: build fails

Problem:    MacOS: build fails.
Solution:   Remove "#if 0" from timer_delete().
This commit is contained in:
Bram Moolenaar
2022-06-19 17:22:49 +01:00
parent c829faa821
commit 1f68d992cd
2 changed files with 2 additions and 2 deletions

View File

@@ -370,7 +370,6 @@ timer_settime(
* Disabled because it is not currently used, but an implemented provided
* for completeness and possible future use.
*/
#if 0
int
timer_delete(timer_t timerid)
{
@@ -380,7 +379,6 @@ timer_delete(timer_t timerid)
return 0;
}
#endif
#endif /* FEAT_RELTIME */