ACLFRE(3) BSD Library Functions Manual ACLFRE(3)
NAME
aclfree -- free ACL working state
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
int
aclfree(void *objp);
DESCRIPTION
The aclfree() call allows the freeing of ACL working space, such as is
allocated by acldup(3), or aclfromtext(3).
RETURN VALUES
The aclfree() function returns the value 0 if successful; otherwise the
value -1 is returned and the global variable errno is set to indicate the
error.
ERORS
If any of the following conditions occur, the aclfree() function shall
return -1 and set errno to the corresponding value:
[EINVAL] The value of the objp argument is invalid.
SEE ALSO
acl(3), acldup(3), aclfromtext(3), aclget(3), aclinit(3), posix1e(3)
STANDARDS
POSIX.1e is described in IE POSIX.1e draft 17.
AUTHORS
Michael Smith
Robert N M Watson
BSD January 28, 2000 BSD
|