Deleted Added
full compact
_types.h (331722) _types.h (332135)
1/*-
2 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
3 * Copyright (c) 1990, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

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 * From: @(#)ansi.h 8.2 (Berkeley) 1/4/94
35 * From: @(#)types.h 8.3 (Berkeley) 1/5/94
1/*-
2 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
3 * Copyright (c) 1990, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

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 * From: @(#)ansi.h 8.2 (Berkeley) 1/4/94
35 * From: @(#)types.h 8.3 (Berkeley) 1/5/94
36 * $FreeBSD: stable/11/sys/arm/include/_types.h 331722 2018-03-29 02:50:57Z eadler $
36 * $FreeBSD: stable/11/sys/arm/include/_types.h 332135 2018-04-06 19:17:59Z kevans $
37 */
38
39#ifndef _MACHINE__TYPES_H_
40#define _MACHINE__TYPES_H_
41
42#ifndef _SYS_CDEFS_H_
43#error this file needs sys/cdefs.h as a prerequisite
44#endif

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

63/* LONGLONG */
64typedef unsigned long long __uint64_t;
65
66/*
67 * Standard type definitions.
68 */
69typedef __uint32_t __clock_t; /* clock()... */
70typedef __int32_t __critical_t;
37 */
38
39#ifndef _MACHINE__TYPES_H_
40#define _MACHINE__TYPES_H_
41
42#ifndef _SYS_CDEFS_H_
43#error this file needs sys/cdefs.h as a prerequisite
44#endif

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

63/* LONGLONG */
64typedef unsigned long long __uint64_t;
65
66/*
67 * Standard type definitions.
68 */
69typedef __uint32_t __clock_t; /* clock()... */
70typedef __int32_t __critical_t;
71#ifndef _STANDALONE
71typedef double __double_t;
72typedef float __float_t;
72typedef double __double_t;
73typedef float __float_t;
74#endif
73typedef __int32_t __intfptr_t;
74typedef __int64_t __intmax_t;
75typedef __int32_t __intptr_t;
76typedef __int32_t __int_fast8_t;
77typedef __int32_t __int_fast16_t;
78typedef __int32_t __int_fast32_t;
79typedef __int64_t __int_fast64_t;
80typedef __int8_t __int_least8_t;

--- 44 unchanged lines hidden ---
75typedef __int32_t __intfptr_t;
76typedef __int64_t __intmax_t;
77typedef __int32_t __intptr_t;
78typedef __int32_t __int_fast8_t;
79typedef __int32_t __int_fast16_t;
80typedef __int32_t __int_fast32_t;
81typedef __int64_t __int_fast64_t;
82typedef __int8_t __int_least8_t;

--- 44 unchanged lines hidden ---