diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-12-16 17:38:29 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2022-12-16 17:40:06 +0100 |
commit | a5207304dd7cda519ae94b313b9d4fb6dbd298f6 (patch) | |
tree | 6dac8769883cac8f0345dd9d3149a629bfb8a2b6 /src/nvim/os_unix.c | |
parent | 614d382621fa0b9d19287b63edb39b637409c581 (diff) | |
download | rneovim-a5207304dd7cda519ae94b313b9d4fb6dbd298f6.tar.gz rneovim-a5207304dd7cda519ae94b313b9d4fb6dbd298f6.tar.bz2 rneovim-a5207304dd7cda519ae94b313b9d4fb6dbd298f6.zip |
refactor: rename mch_get_acl => os_get_acl
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 3521703fba..074a8b7936 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -19,21 +19,21 @@ // Return a pointer to the ACL of file "fname" in allocated memory. // Return NULL if the ACL is not available for whatever reason. -vim_acl_T mch_get_acl(const char_u *fname) +vim_acl_T os_get_acl(const char_u *fname) { vim_acl_T ret = NULL; return ret; } // Set the ACL of file "fname" to "acl" (unless it's NULL). -void mch_set_acl(const char_u *fname, vim_acl_T aclent) +void os_set_acl(const char_u *fname, vim_acl_T aclent) { if (aclent == NULL) { return; } } -void mch_free_acl(vim_acl_T aclent) +void os_free_acl(vim_acl_T aclent) { if (aclent == NULL) { return; |