xref: /xnu-11417.121.6/bsd/bsm/audit_kernel.h (revision a1e26a70f38d1d7daa7b49b258e2f8538ad81650)
1*a1e26a70SApple OSS Distributions /*
2*a1e26a70SApple OSS Distributions  * Copyright (c) 2004-2008, Apple Inc.  All rights reserved.
3*a1e26a70SApple OSS Distributions  *
4*a1e26a70SApple OSS Distributions  * @APPLE_BSD_LICENSE_HEADER_START@
5*a1e26a70SApple OSS Distributions  *
6*a1e26a70SApple OSS Distributions  * Redistribution and use in source and binary forms, with or without
7*a1e26a70SApple OSS Distributions  * modification, are permitted provided that the following conditions
8*a1e26a70SApple OSS Distributions  * are met:
9*a1e26a70SApple OSS Distributions  *
10*a1e26a70SApple OSS Distributions  * 1.  Redistributions of source code must retain the above copyright
11*a1e26a70SApple OSS Distributions  *     notice, this list of conditions and the following disclaimer.
12*a1e26a70SApple OSS Distributions  * 2.  Redistributions in binary form must reproduce the above copyright
13*a1e26a70SApple OSS Distributions  *     notice, this list of conditions and the following disclaimer in the
14*a1e26a70SApple OSS Distributions  *     documentation and/or other materials provided with the distribution.
15*a1e26a70SApple OSS Distributions  * 3.  Neither the name of Apple Inc. ("Apple") nor the names of
16*a1e26a70SApple OSS Distributions  *     its contributors may be used to endorse or promote products derived
17*a1e26a70SApple OSS Distributions  *     from this software without specific prior written permission.
18*a1e26a70SApple OSS Distributions  *
19*a1e26a70SApple OSS Distributions  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
20*a1e26a70SApple OSS Distributions  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21*a1e26a70SApple OSS Distributions  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22*a1e26a70SApple OSS Distributions  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
23*a1e26a70SApple OSS Distributions  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24*a1e26a70SApple OSS Distributions  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25*a1e26a70SApple OSS Distributions  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26*a1e26a70SApple OSS Distributions  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27*a1e26a70SApple OSS Distributions  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28*a1e26a70SApple OSS Distributions  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*a1e26a70SApple OSS Distributions  *
30*a1e26a70SApple OSS Distributions  * @APPLE_BSD_LICENSE_HEADER_END@
31*a1e26a70SApple OSS Distributions  */
32*a1e26a70SApple OSS Distributions /*
33*a1e26a70SApple OSS Distributions  * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
34*a1e26a70SApple OSS Distributions  * support for mandatory and extensible security protections.  This notice
35*a1e26a70SApple OSS Distributions  * is included in support of clause 2.2 (b) of the Apple Public License,
36*a1e26a70SApple OSS Distributions  * Version 2.0.
37*a1e26a70SApple OSS Distributions  */
38*a1e26a70SApple OSS Distributions 
39*a1e26a70SApple OSS Distributions #ifndef _BSM_AUDIT_KERNEL_H
40*a1e26a70SApple OSS Distributions #define _BSM_AUDIT_KERNEL_H
41*a1e26a70SApple OSS Distributions 
42*a1e26a70SApple OSS Distributions #warning "<bsm/audit_kernel.h> is deprecated.  Please use <security/audit/audit.h> instead."
43*a1e26a70SApple OSS Distributions 
44*a1e26a70SApple OSS Distributions #include <security/audit/audit.h>
45*a1e26a70SApple OSS Distributions 
46*a1e26a70SApple OSS Distributions #endif /* !_BSM_AUDIT_KERNEL_H */
47