aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/posix1e/acl_delete.c
diff options
context:
space:
mode:
authorThomas Moestl <tmm@FreeBSD.org>2001-04-04 18:00:52 +0000
committerThomas Moestl <tmm@FreeBSD.org>2001-04-04 18:00:52 +0000
commit7bd44e92236dee951d8c692333f2508155592550 (patch)
tree5d922128219676ab149f41475f9d3ad03382c5c7 /lib/libc/posix1e/acl_delete.c
parentf1f899e390a29bfb85c988ad3a831cbb68a349e9 (diff)
downloadsrc-7bd44e92236dee951d8c692333f2508155592550.tar.gz
src-7bd44e92236dee951d8c692333f2508155592550.zip
Prepare for the inclusion of libposix1e into libc: retire the old
Makefile, add Makefile.inc needed for libc build; add #include "namespace.h"/#include "un-namespace.h" pairs around the includes of sys/acl.h and sys/capability.h, and an additional underscore in front of the functions that will be overridden in libc_r. Approved by: rwatson Obtained from: TrustedBSD Project
Notes
Notes: svn path=/head/; revision=75185
Diffstat (limited to 'lib/libc/posix1e/acl_delete.c')
-rw-r--r--lib/libc/posix1e/acl_delete.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/posix1e/acl_delete.c b/lib/libc/posix1e/acl_delete.c
index 36d50afe1a8a..2f5205d8a954 100644
--- a/lib/libc/posix1e/acl_delete.c
+++ b/lib/libc/posix1e/acl_delete.c
@@ -30,7 +30,9 @@
*/
#include <sys/types.h>
+#include "namespace.h"
#include <sys/acl.h>
+#include "un-namespace.h"
#include <sys/errno.h>
int
@@ -53,5 +55,5 @@ int
acl_delete_fd_np(int filedes, acl_type_t type)
{
- return (__acl_delete_fd(filedes, type));
+ return (___acl_delete_fd(filedes, type));
}