diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-02-26 00:36:01 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-25 21:24:52 -0300 |
commit | 82e0636e788f131d46451805f6c46e2d4f8496a9 (patch) | |
tree | e9c4360c74b8fe58212697aabf7f03319dbd4491 /src/os_unix.c | |
parent | 8437a4c9724f17824c9043afc27288013d096649 (diff) | |
download | rneovim-82e0636e788f131d46451805f6c46e2d4f8496a9.tar.gz rneovim-82e0636e788f131d46451805f6c46e2d4f8496a9.tar.bz2 rneovim-82e0636e788f131d46451805f6c46e2d4f8496a9.zip |
Delete local function strerror and USE_GETCWD define.
Both are useless after porting mch_dirname to libuv.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 4bc4024abb..c3353d3724 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1228,22 +1228,6 @@ long mch_get_pid() { return (long)getpid(); } -#if !defined(HAVE_STRERROR) && defined(USE_GETCWD) -static char *strerror __ARGS((int)); - -static char * strerror(int err) -{ - extern int sys_nerr; - extern char *sys_errlist[]; - static char er[20]; - - if (err > 0 && err < sys_nerr) - return sys_errlist[err]; - sprintf(er, "Error %d", err); - return er; -} -#endif - #if defined(USE_FNAME_CASE) || defined(PROTO) /* * Set the case of the file name, if it already exists. This will cause the |