diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-12-16 12:27:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-16 12:27:49 -0500 |
commit | 37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe (patch) | |
tree | 6dac8769883cac8f0345dd9d3149a629bfb8a2b6 /src/nvim/os_unix.c | |
parent | b55ccb43240c931d1a52a85b02920521a838e0a7 (diff) | |
parent | a5207304dd7cda519ae94b313b9d4fb6dbd298f6 (diff) | |
download | rneovim-37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe.tar.gz rneovim-37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe.tar.bz2 rneovim-37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe.zip |
Merge #21444 rename mch_msg => os_msg
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; |