aboutsummaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2015-09-20 20:16:34 +0000
committerCraig Rodrigues <rodrigc@FreeBSD.org>2015-09-20 20:16:34 +0000
commit8d7e1f1585176ff0f0c9139e030a669a52c50600 (patch)
treefbba4dd6be9f2d0078efa4eed89620c4f7d97486 /lib/libc
parent48d59c227051de4ae19dffe34f43e9f9734ada2b (diff)
downloadsrc-8d7e1f1585176ff0f0c9139e030a669a52c50600.tar.gz
src-8d7e1f1585176ff0f0c9139e030a669a52c50600.zip
Remove names from some prototypes
Notes
Notes: svn path=/head/; revision=288027
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/posix1e/acl_compat.c6
-rw-r--r--lib/libc/posix1e/acl_support.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/posix1e/acl_compat.c b/lib/libc/posix1e/acl_compat.c
index edb63faa6c7b..ab1bdf6244cb 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
diff --git a/lib/libc/posix1e/acl_support.h b/lib/libc/posix1e/acl_support.h
index 9d6c1b295d10..e7f35d5ad68c 100644
--- a/lib/libc/posix1e/acl_support.h
+++ b/lib/libc/posix1e/acl_support.h
@@ -45,8 +45,8 @@ int _acl_brand_may_be(const acl_t acl, int brand);
int _entry_brand_may_be(const acl_entry_t entry, int brand);
void _acl_brand_as(acl_t acl, int brand);
void _entry_brand_as(const acl_entry_t entry, int brand);
-int _nfs4_acl_entry_from_text(acl_t aclp, char *str);
-char *_nfs4_acl_to_text_np(const acl_t aclp, ssize_t *len_p, int flags);
+int _nfs4_acl_entry_from_text(acl_t, char *);
+char *_nfs4_acl_to_text_np(const acl_t, ssize_t *, int);
int _nfs4_format_flags(char *str, size_t size, acl_flag_t var, int verbose);
int _nfs4_format_access_mask(char *str, size_t size, acl_perm_t var, int verbose);
int _nfs4_parse_flags(const char *str, acl_flag_t *var);