xref: /netbsd-src/sys/compat/linux/linux_systrace_args.c (revision 777bad60d5e1dee317fb1eb208cb6faa086fa4b4)
1*777bad60Schristos /*	$NetBSD: linux_systrace_args.c,v 1.1 2015/03/07 15:16:12 christos Exp $	*/
2*777bad60Schristos 
3*777bad60Schristos /*-
4*777bad60Schristos  * Copyright (c) 1998 The NetBSD Foundation, Inc.
5*777bad60Schristos  * All rights reserved.
6*777bad60Schristos  *
7*777bad60Schristos  * This code is derived from software contributed to The NetBSD Foundation
8*777bad60Schristos  * by Eric Haszlakiewicz.
9*777bad60Schristos  *
10*777bad60Schristos  * Redistribution and use in source and binary forms, with or without
11*777bad60Schristos  * modification, are permitted provided that the following conditions
12*777bad60Schristos  * are met:
13*777bad60Schristos  * 1. Redistributions of source code must retain the above copyright
14*777bad60Schristos  *    notice, this list of conditions and the following disclaimer.
15*777bad60Schristos  * 2. Redistributions in binary form must reproduce the above copyright
16*777bad60Schristos  *    notice, this list of conditions and the following disclaimer in the
17*777bad60Schristos  *    documentation and/or other materials provided with the distribution.
18*777bad60Schristos  *
19*777bad60Schristos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*777bad60Schristos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*777bad60Schristos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*777bad60Schristos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*777bad60Schristos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*777bad60Schristos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*777bad60Schristos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*777bad60Schristos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*777bad60Schristos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*777bad60Schristos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*777bad60Schristos  * POSSIBILITY OF SUCH DAMAGE.
30*777bad60Schristos  */
31*777bad60Schristos 
32*777bad60Schristos /* XXX XXX This exists to keep kdump and friends happy. */
33*777bad60Schristos 
34*777bad60Schristos #include <sys/cdefs.h>
35*777bad60Schristos __KERNEL_RCSID(1, "$NetBSD: linux_systrace_args.c,v 1.1 2015/03/07 15:16:12 christos Exp $");
36*777bad60Schristos 
37*777bad60Schristos #if defined(__i386__)
38*777bad60Schristos #include "../../sys/compat/linux/arch/i386/linux_systrace_args.c"
39*777bad60Schristos #elif defined(__m68k__)
40*777bad60Schristos #include "../../sys/compat/linux/arch/m68k/linux_systrace_args.c"
41*777bad60Schristos #elif defined(__alpha__)
42*777bad60Schristos #include "../../sys/compat/linux/arch/alpha/linux_systrace_args.c"
43*777bad60Schristos #elif defined(__powerpc__)
44*777bad60Schristos #include "../../sys/compat/linux/arch/powerpc/linux_systrace_args.c"
45*777bad60Schristos #elif defined(__mips__)
46*777bad60Schristos #include "../../sys/compat/linux/arch/mips/linux_systrace_args.c"
47*777bad60Schristos #elif defined(__arm__)
48*777bad60Schristos #include "../../sys/compat/linux/arch/arm/linux_systrace_args.c"
49*777bad60Schristos #elif defined(__amd64__)
50*777bad60Schristos #include "../../sys/compat/linux/arch/amd64/linux_systrace_args.c"
51*777bad60Schristos #else
52*777bad60Schristos #error "fix me"
53*777bad60Schristos #endif
54