diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 20:16:34 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-20 20:16:34 +0000 |
commit | e23bf826df9f9f2b49f0a1fefd615c8d4b483b9c (patch) | |
tree | fbba4dd6be9f2d0078efa4eed89620c4f7d97486 /lib/libc/posix1e/acl_compat.c | |
parent | 1737b90d795e125dbcc28ae33d27ed4fe8c5e33d (diff) | |
download | FreeBSD-src-e23bf826df9f9f2b49f0a1fefd615c8d4b483b9c.zip FreeBSD-src-e23bf826df9f9f2b49f0a1fefd615c8d4b483b9c.tar.gz |
Remove names from some prototypes
Diffstat (limited to 'lib/libc/posix1e/acl_compat.c')
-rw-r--r-- | lib/libc/posix1e/acl_compat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/posix1e/acl_compat.c b/lib/libc/posix1e/acl_compat.c index edb63fa..ab1bdf6 100644 --- a/lib/libc/posix1e/acl_compat.c +++ b/lib/libc/posix1e/acl_compat.c @@ -29,9 +29,9 @@ __FBSDID("$FreeBSD$"); #include <sys/acl.h> -int __oldacl_get_perm_np(acl_permset_t permset_d, oldacl_perm_t perm); -int __oldacl_add_perm(acl_permset_t permset_d, oldacl_perm_t perm); -int __oldacl_delete_perm(acl_permset_t permset_d, oldacl_perm_t perm); +int __oldacl_get_perm_np(acl_permset_t, oldacl_perm_t); +int __oldacl_add_perm(acl_permset_t, oldacl_perm_t); +int __oldacl_delete_perm(acl_permset_t, oldacl_perm_t); /* * Compatibility wrappers for applications compiled against libc from before |