audit.h revision 146759
1146759Srwatson/*-
2146759Srwatson * Copyright (c) 2005 Robert N. M. Watson
3146759Srwatson * All rights reserved.
4146759Srwatson *
5146759Srwatson * Redistribution and use in source and binary forms, with or without
6146759Srwatson * modification, are permitted provided that the following conditions
7146759Srwatson * are met:
8146759Srwatson * 1. Redistributions of source code must retain the above copyright
9146759Srwatson *    notice, this list of conditions and the following disclaimer.
10146759Srwatson * 2. Redistributions in binary form must reproduce the above copyright
11146759Srwatson *    notice, this list of conditions and the following disclaimer in the
12146759Srwatson *    documentation and/or other materials provided with the distribution.
13146759Srwatson *
14146759Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15146759Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16146759Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17146759Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18146759Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19146759Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20146759Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21146759Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22146759Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23146759Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24146759Srwatson * SUCH DAMAGE.
25146759Srwatson *
26146759Srwatson * $FreeBSD: head/sys/bsm/audit.h 146759 2005-05-29 16:10:33Z rwatson $
27146759Srwatson */
28146759Srwatson
29146759Srwatson#ifndef _BSM_AUDIT_H_
30146759Srwatson#define	_BSM_AUDIT_H_
31146759Srwatson
32146759Srwatson/*
33146759Srwatson * This is a place-holder include file that defines only the minimal BSM
34146759Srwatson * types to allow the system call table to contain stub event identifiers.
35146759Srwatson * Additional types and defines will be introduced later.
36146759Srwatson */
37146759Srwatsontypedef	u_int16_t	au_event_t;
38146759Srwatson
39146759Srwatson#endif /* !_BSM_AUDIT_H_ */
40