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