sysarch.h revision 202097
1162298Simp/*-
2162298Simp * Copyright (c) 1993 The Regents of the University of California.
3162298Simp * All rights reserved.
4162298Simp *
5181148Scognet * Redistribution and use in source and binary forms, with or without
6181148Scognet * modification, are permitted provided that the following conditions
7181167Scognet * are met:
8181148Scognet * 1. Redistributions of source code must retain the above copyright
9162298Simp *    notice, this list of conditions and the following disclaimer.
10162298Simp * 2. Redistributions in binary form must reproduce the above copyright
11162298Simp *    notice, this list of conditions and the following disclaimer in the
12162298Simp *    documentation and/or other materials provided with the distribution.
13162298Simp * 3. Neither the name of the University nor the names of its contributors
14162298Simp *    may be used to endorse or promote products derived from this software
15162298Simp *    without specific prior written permission.
16162298Simp *
17162298Simp * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18162298Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19162298Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20162298Simp * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/ia64/include/sysarch.h 202097 2010-01-11 18:10:13Z marcel $
30 */
31
32#ifndef _MACHINE_SYSARCH_H_
33#define	_MACHINE_SYSARCH_H_
34
35#ifndef _KERNEL
36#include <sys/cdefs.h>
37
38__BEGIN_DECLS
39int	sysarch(int, void *);
40__END_DECLS
41#endif
42
43#endif /* !_MACHINE_SYSARCH_H_ */
44