1192800Strasz/*-
2192800Strasz * Copyright (c) 2008, 2009 Edward Tomasz Napiera��a <trasz@FreeBSD.org>
3192800Strasz * All rights reserved.
4192800Strasz *
5192800Strasz * Redistribution and use in source and binary forms, with or without
6192800Strasz * modification, are permitted provided that the following conditions
7192800Strasz * are met:
8192800Strasz * 1. Redistributions of source code must retain the above copyright
9192800Strasz *    notice, this list of conditions and the following disclaimer.
10192800Strasz * 2. Redistributions in binary form must reproduce the above copyright
11192800Strasz *    notice, this list of conditions and the following disclaimer in the
12192800Strasz *    documentation and/or other materials provided with the distribution.
13192800Strasz *
14192804Strasz * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15192804Strasz * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16192804Strasz * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17192804Strasz * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18192804Strasz * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19192804Strasz * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20192804Strasz * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21192804Strasz * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22192804Strasz * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23192804Strasz * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24192804Strasz * SUCH DAMAGE.
25192800Strasz *
26192800Strasz * $FreeBSD$
27192800Strasz */
28192800Strasz
29192800Strasz#ifndef OPENSOLARIS_SYS_ACL_H
30192800Strasz#define OPENSOLARIS_SYS_ACL_H
31192800Strasz
32192800Strasz#include_next <sys/acl.h>
33192800Strasz
34192800Straszstruct acl;
35192800Strasz
36192800Straszvoid aces_from_acl(ace_t *aces, int *nentries, const struct acl *aclp);
37192800Straszint acl_from_aces(struct acl *aclp, const ace_t *aces, int nentries);
38192800Strasz
39192800Strasz#endif /* OPENSOLARIS_SYS_ACL_H */
40