1139825Simp/*-
278342Sbenno * Copyright (C) 2001 Benno Rice.
378342Sbenno * All rights reserved.
478342Sbenno *
578342Sbenno * Redistribution and use in source and binary forms, with or without
678342Sbenno * modification, are permitted provided that the following conditions
778342Sbenno * are met:
878342Sbenno * 1. Redistributions of source code must retain the above copyright
978342Sbenno *    notice, this list of conditions and the following disclaimer.
1078342Sbenno * 2. Redistributions in binary form must reproduce the above copyright
1178342Sbenno *    notice, this list of conditions and the following disclaimer in the
1278342Sbenno *    documentation and/or other materials provided with the distribution.
1378342Sbenno *
1478342Sbenno * THIS SOFTWARE IS PROVIDED BY Benno Rice ``AS IS'' AND ANY EXPRESS OR
1578342Sbenno * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1678342Sbenno * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1778342Sbenno * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1878342Sbenno * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
1978342Sbenno * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
2078342Sbenno * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
2178342Sbenno * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2278342Sbenno * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2378342Sbenno * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2478342Sbenno */
2578342Sbenno
26113038Sobrien#include <sys/cdefs.h>
27113038Sobrien__FBSDID("$FreeBSD$");
2878342Sbenno
2978342Sbenno#include <sys/param.h>
3078342Sbenno#include <sys/systm.h>
3178342Sbenno#include <sys/errno.h>
3278342Sbenno#include <sys/sysproto.h>
3378342Sbenno
34209975Snwhitehorn#include "opt_compat.h"
35209975Snwhitehorn
36209975Snwhitehorn#ifdef COMPAT_FREEBSD32
37209975Snwhitehorn#include <compat/freebsd32/freebsd32_proto.h>
38209975Snwhitehorn
3978342Sbennoint
40209975Snwhitehornfreebsd32_sysarch(struct thread *td, struct freebsd32_sysarch_args *uap)
41209975Snwhitehorn{
42209975Snwhitehorn
43209975Snwhitehorn	return (EINVAL);
44209975Snwhitehorn}
45209975Snwhitehorn#endif
46209975Snwhitehorn
47209975Snwhitehornint
4883682Smpsysarch(struct thread *td, struct sysarch_args *uap)
4978342Sbenno{
5078342Sbenno
51114029Sjhb	return (EINVAL);
5278342Sbenno}
53209975Snwhitehorn
54