diff options
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 44274e8f1d..9396a5896a 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -7,14 +7,13 @@ #include <stdbool.h> #include <string.h> -#include "nvim/vim.h" #include "nvim/ascii.h" -#include "nvim/os_unix.h" #include "nvim/buffer.h" #include "nvim/charset.h" #include "nvim/eval.h" #include "nvim/ex_cmds.h" #include "nvim/fileio.h" +#include "nvim/garray.h" #include "nvim/getchar.h" #include "nvim/main.h" #include "nvim/mbyte.h" @@ -23,19 +22,20 @@ #include "nvim/message.h" #include "nvim/misc1.h" #include "nvim/mouse.h" -#include "nvim/garray.h" +#include "nvim/msgpack_rpc/helpers.h" +#include "nvim/os/input.h" +#include "nvim/os/os.h" +#include "nvim/os/shell.h" +#include "nvim/os/signal.h" +#include "nvim/os/time.h" +#include "nvim/os_unix.h" #include "nvim/path.h" #include "nvim/screen.h" #include "nvim/strings.h" #include "nvim/syntax.h" -#include "nvim/ui.h" #include "nvim/types.h" -#include "nvim/os/os.h" -#include "nvim/os/time.h" -#include "nvim/os/input.h" -#include "nvim/os/shell.h" -#include "nvim/os/signal.h" -#include "nvim/msgpack_rpc/helpers.h" +#include "nvim/ui.h" +#include "nvim/vim.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os_unix.c.generated.h" @@ -61,13 +61,15 @@ vim_acl_T mch_get_acl(const char_u *fname) // Set the ACL of file "fname" to "acl" (unless it's NULL). void mch_set_acl(const char_u *fname, vim_acl_T aclent) { - if (aclent == NULL) + if (aclent == NULL) { return; + } } void mch_free_acl(vim_acl_T aclent) { - if (aclent == NULL) + if (aclent == NULL) { return; + } } #endif |