1 /* @(#)lowlevel.h	1.3 06/05/13 Copyright 1998,1999 Heiko Eissfeldt */
2 /*
3  * os dependent functions
4  */
5 /*
6  * The contents of this file are subject to the terms of the
7  * Common Development and Distribution License, Version 1.0 only
8  * (the "License").  You may not use this file except in compliance
9  * with the License.
10  *
11  * See the file CDDL.Schily.txt in this distribution for details.
12  * A copy of the CDDL is also available via the Internet at
13  * http://www.opensource.org/licenses/cddl1.txt
14  *
15  * When distributing Covered Code, include this CDDL HEADER in each
16  * file and include the License file CDDL.Schily.txt from this distribution.
17  */
18 
19 #ifndef LOWLEVEL
20 # define LOWLEVEL 1
21 
22 # if defined(__linux__)
23 #  include <linux/version.h>
24 #  include <linux/major.h>
25 
26 # endif /* defined __linux__ */
27 
28 #endif /* ifndef LOWLEVEL */
29