diff options
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 003e45c2a0..fdbaba466a 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1339,12 +1339,12 @@ int mch_isdir(char_u *name) #endif } -static int executable_file(char_u *name); +int executable_file(char_u *name); /* * Return 1 if "name" is an executable file, 0 if not or it doesn't exist. */ -static int executable_file(char_u *name) +int executable_file(char_u *name) { struct stat st; |