xref: /netbsd-src/sys/compat/linux/arch/i386/linux_commons.c (revision dc306354b0b29af51801a7632f1e95265a68cd81)
1 /*	$NetBSD: linux_commons.c,v 1.1 1999/01/03 05:29:31 erh Exp $	*/
2 
3 /*
4  * This file includes C files from the common
5  * area to decrese the number of files to compile
6  * in order to make building a kernel go faster.
7  *
8  * Option headers and headers which depend on
9  * certain options being set need to be included
10  * here.  This ensures that a header file sees
11  * the options it needs even if one of included
12  * C files doesn't use it.
13  */
14 
15 #include "opt_sysv.h"
16 #include "opt_ktrace.h"
17 #include "opt_nfsserver.h"
18 #include "fs_nfs.h"
19 #include "fs_lfs.h"
20 
21 #include <sys/types.h>
22 #include <sys/param.h>
23 #include <sys/mount.h>
24 #include <sys/signal.h>
25 #include <sys/syscallargs.h>
26 
27 #include "../../common/linux_pipe.c"
28 #include "../../common/linux_ipccall.c"
29 #include "../../common/linux_misc_notalpha.c"
30 #include "../../common/linux_sig_notalpha.c"
31 #include "../../common/linux_sigaction.c"
32 #include "../../common/linux_socketcall.c"
33 #include "../../common/linux_llseek.c"
34 #include "../../common/linux_break.c"
35 #include "../../common/linux_oldmmap.c"
36 #include "../../common/linux_oldselect.c"
37 #include "../../common/linux_olduname.c"
38 #include "../../common/linux_oldolduname.c"
39