Deleted Added
full compact
param.h (304865) param.h (305733)
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 18 unchanged lines hidden (view full) ---

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)param.h 8.3 (Berkeley) 4/4/95
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 18 unchanged lines hidden (view full) ---

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)param.h 8.3 (Berkeley) 4/4/95
35 * $FreeBSD: stable/11/sys/sys/param.h 304865 2016-08-26 21:28:24Z ache $
35 * $FreeBSD: stable/11/sys/sys/param.h 305733 2016-09-12 10:14:30Z hselasky $
36 */
37
38#ifndef _SYS_PARAM_H_
39#define _SYS_PARAM_H_
40
41#include <sys/_null.h>
42
43#define BSD 199506 /* System version (year & month). */

--- 9 unchanged lines hidden (view full) ---

53 * head/en_US.ISO8859-1/books/porters-handbook/versions/chapter.xml
54 *
55 * scheme is: <major><two digit minor>Rxx
56 * 'R' is in the range 0 to 4 if this is a release branch or
57 * x.0-CURRENT before RELENG_*_0 is created, otherwise 'R' is
58 * in the range 5 to 9.
59 */
60#undef __FreeBSD_version
36 */
37
38#ifndef _SYS_PARAM_H_
39#define _SYS_PARAM_H_
40
41#include <sys/_null.h>
42
43#define BSD 199506 /* System version (year & month). */

--- 9 unchanged lines hidden (view full) ---

53 * head/en_US.ISO8859-1/books/porters-handbook/versions/chapter.xml
54 *
55 * scheme is: <major><two digit minor>Rxx
56 * 'R' is in the range 0 to 4 if this is a release branch or
57 * x.0-CURRENT before RELENG_*_0 is created, otherwise 'R' is
58 * in the range 5 to 9.
59 */
60#undef __FreeBSD_version
61#define __FreeBSD_version 1100502 /* Master, propagated to newvers */
61#define __FreeBSD_version 1100503 /* Master, propagated to newvers */
62
63/*
64 * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,
65 * which by definition is always true on FreeBSD. This macro is also defined
66 * on other systems that use the kernel of FreeBSD, such as GNU/kFreeBSD.
67 *
68 * It is tempting to use this macro in userland code when we want to enable
69 * kernel-specific routines, and in fact it's fine to do this in code that

--- 294 unchanged lines hidden ---
62
63/*
64 * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,
65 * which by definition is always true on FreeBSD. This macro is also defined
66 * on other systems that use the kernel of FreeBSD, such as GNU/kFreeBSD.
67 *
68 * It is tempting to use this macro in userland code when we want to enable
69 * kernel-specific routines, and in fact it's fine to do this in code that

--- 294 unchanged lines hidden ---