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