1190703Smarcel/*-
2190703Smarcel * Copyright (c) 1993 The Regents of the University of California.
3190703Smarcel * All rights reserved.
4190703Smarcel *
5190703Smarcel * Redistribution and use in source and binary forms, with or without
6190703Smarcel * modification, are permitted provided that the following conditions
7190703Smarcel * are met:
8190703Smarcel * 1. Redistributions of source code must retain the above copyright
9190703Smarcel *    notice, this list of conditions and the following disclaimer.
10190703Smarcel * 2. Redistributions in binary form must reproduce the above copyright
11190703Smarcel *    notice, this list of conditions and the following disclaimer in the
12190703Smarcel *    documentation and/or other materials provided with the distribution.
13190703Smarcel * 3. Neither the name of the University nor the names of its contributors
14190703Smarcel *    may be used to endorse or promote products derived from this software
15190703Smarcel *    without specific prior written permission.
16190703Smarcel *
17190703Smarcel * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18190703Smarcel * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19190703Smarcel * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20190703Smarcel * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21190703Smarcel * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22190703Smarcel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23190703Smarcel * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24190703Smarcel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25190703Smarcel * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26190703Smarcel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27190703Smarcel * SUCH DAMAGE.
28190703Smarcel *
29190703Smarcel * $FreeBSD: releng/10.3/sys/powerpc/include/sysarch.h 190703 2009-04-04 22:05:36Z marcel $
30190703Smarcel */
31190703Smarcel
32190703Smarcel#ifndef _MACHINE_SYSARCH_H_
33190703Smarcel#define	_MACHINE_SYSARCH_H_
34190703Smarcel
35190703Smarcel#ifndef _KERNEL
36190703Smarcel#include <sys/cdefs.h>
37190703Smarcel
38190703Smarcel__BEGIN_DECLS
39190703Smarcelint	sysarch(int, void *);
40190703Smarcel__END_DECLS
41190703Smarcel#endif
42190703Smarcel
43190703Smarcel#endif /* !_MACHINE_SYSARCH_H_ */
44