From 275f6e3a6b5132f814ee947da49b8899f557f0a3 Mon Sep 17 00:00:00 2001 From: Scott Prager Date: Fri, 19 Sep 2014 03:49:37 -0400 Subject: mch_early_init() -> early_init(). Move general initialization functions to early_init, which simplifies test/unit/helpers.lua, which requires all these functions. --- src/nvim/os_unix.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/nvim/os_unix.c') diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 21c8065642..e761145f6f 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -439,12 +439,6 @@ int mch_nodetype(char_u *name) return NODE_WRITABLE; } -void mch_early_init(void) -{ - handle_init(); - time_init(); -} - #if defined(EXITFREE) || defined(PROTO) void mch_free_mem(void) { -- cgit