mac_set.c revision 105698
1101242Srwatson/*
2101242Srwatson * Copyright (c) 1999, 2000, 2001, 2002 Robert N. M. Watson
3101242Srwatson * All rights reserved.
4101242Srwatson *
5101242Srwatson * This software was developed by Robert Watson for the TrustedBSD Project.
6101242Srwatson *
7101242Srwatson * Redistribution and use in source and binary forms, with or without
8101242Srwatson * modification, are permitted provided that the following conditions
9101242Srwatson * are met:
10101242Srwatson * 1. Redistributions of source code must retain the above copyright
11101242Srwatson *    notice, this list of conditions and the following disclaimer.
12101242Srwatson * 2. Redistributions in binary form must reproduce the above copyright
13101242Srwatson *    notice, this list of conditions and the following disclaimer in the
14101242Srwatson *    documentation and/or other materials provided with the distribution.
15101242Srwatson * 3. The names of the authors may not be used to endorse or promote
16101242Srwatson *    products derived from this software without specific prior written
17101242Srwatson *    permission.
18101242Srwatson *
19101242Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20101242Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21101242Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22101242Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23101242Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24101242Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25101242Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26101242Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27101242Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28101242Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29101242Srwatson * SUCH DAMAGE.
30101242Srwatson *
31101242Srwatson * $FreeBSD: head/lib/libc/posix1e/mac_set.c 105698 2002-10-22 14:36:11Z rwatson $
32101242Srwatson */
33101242Srwatson
34101242Srwatson#include <sys/types.h>
35101242Srwatson#include <sys/mac.h>
36101242Srwatson
37101242Srwatsonint
38105698Srwatsonmac_set_fd(int fd, struct mac *label)
39101242Srwatson{
40101242Srwatson
41105698Srwatson	return (__mac_set_fd(fd, label));
42101242Srwatson}
43101242Srwatson
44101242Srwatsonint
45105698Srwatsonmac_set_file(const char *path, struct mac *label)
46101242Srwatson{
47101242Srwatson
48105698Srwatson	return (__mac_set_file(path, label));
49101242Srwatson}
50101242Srwatson
51101242Srwatsonint
52105698Srwatsonmac_set_link(const char *path, struct mac *label)
53101242Srwatson{
54101242Srwatson
55105698Srwatson	return (__mac_set_link(path, label));
56105698Srwatson}
57105698Srwatson
58105698Srwatsonint
59105698Srwatsonmac_set_proc(struct mac *label)
60105698Srwatson{
61105698Srwatson
62101242Srwatson	return (__mac_set_proc(label));
63101242Srwatson}
64