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