Add <machine/int_types.h>, which provides namespace-pure definitions
of exact-width integer types.
This commit is contained in:
parent
ad91bba6a6
commit
e695f72a2e
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.12 2000/06/05 21:47:18 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2000/06/26 15:42:16 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/alpha/include
|
||||
INCSDIR= /usr/include/alpha
|
||||
@ -6,10 +6,10 @@ INCSDIR= /usr/include/alpha
|
||||
INCS= alpha_cpu.h ansi.h aout_machdep.h asm.h atomic.h autoconf.h bswap.h \
|
||||
bus.h bwx.h cdefs.h cfbreg.h conf.h cpu.h cpuconf.h db_machdep.h \
|
||||
disklabel.h ecoff_machdep.h elf_machdep.h endian.h endian_machdep.h \
|
||||
fbio.h float.h frame.h ieee.h ieeefp.h intr.h kbio.h \
|
||||
fbio.h float.h frame.h ieee.h ieeefp.h int_types.h intr.h kbio.h \
|
||||
kcore.h limits.h lock.h math.h pal.h param.h pcb.h pio.h pmap.h proc.h \
|
||||
profile.h prom.h psl.h pte.h ptrace.h reg.h rpb.h setjmp.h \
|
||||
signal.h stdarg.h sysarch.h types.h varargs.h vmparam.h vuid_event.h \
|
||||
z8530var.h
|
||||
signal.h stdarg.h sysarch.h types.h varargs.h vmparam.h \
|
||||
vuid_event.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
53
sys/arch/alpha/include/int_types.h
Normal file
53
sys/arch/alpha/include/int_types.h
Normal file
@ -0,0 +1,53 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:17 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 8.3 (Berkeley) 1/5/94
|
||||
*/
|
||||
|
||||
#ifndef _ALPHA_INT_TYPES_H_
|
||||
#define _ALPHA_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
typedef long __int64_t;
|
||||
typedef unsigned long __uint64_t;
|
||||
|
||||
#endif /* !_ALPHA_INT_TYPES_H_ */
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.8 2000/04/29 03:31:47 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2000/06/26 15:42:19 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/amiga/include
|
||||
INCSDIR= /usr/include/amiga
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h bswap.h bus.h cdefs.h conf.h cpu.h \
|
||||
cpufunc.h db_machdep.h disklabel.h elf_machdep.h endian.h \
|
||||
endian_machdep.h fbio.h float.h frame.h ieee.h ieeefp.h intr.h \
|
||||
kcore.h limits.h lock.h math.h mtpr.h param.h pcb.h pmap.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h \
|
||||
svr4_machdep.h trap.h types.h varargs.h vmparam.h
|
||||
endian_machdep.h fbio.h float.h frame.h ieee.h ieeefp.h int_types.h \
|
||||
intr.h kcore.h limits.h lock.h math.h mtpr.h param.h pcb.h pmap.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h \
|
||||
stdarg.h svr4_machdep.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/amiga/include/int_types.h
Normal file
3
sys/arch/amiga/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:20 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.2 2000/06/05 21:37:33 is Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2000/06/26 15:42:21 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/amigappc/include
|
||||
INCSDIR= /usr/include/amigappc
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h bswap.h bus.h cdefs.h conf.h cpu.h \
|
||||
cpufunc.h db_machdep.h disklabel.h elf_machdep.h endian.h fbio.h \
|
||||
float.h frame.h ieee.h ieeefp.h intr.h kcore.h limits.h mtpr.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
setjmp.h signal.h stdarg.h svr4_machdep.h trap.h types.h varargs.h \
|
||||
vmparam.h
|
||||
float.h frame.h ieee.h ieeefp.h int_types.h intr.h kcore.h limits.h \
|
||||
mtpr.h param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
|
||||
reg.h setjmp.h signal.h stdarg.h svr4_machdep.h trap.h \
|
||||
types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/amigappc/include/int_types.h
Normal file
3
sys/arch/amigappc/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:21 kleink Exp $ */
|
||||
|
||||
#include <powerpc/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.16 2000/06/12 17:01:05 soda Exp $
|
||||
# $NetBSD: Makefile,v 1.17 2000/06/26 15:42:22 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/arc/include
|
||||
INCSDIR= /usr/include/arc
|
||||
@ -8,7 +8,7 @@ INCSDIR= /usr/include/arc
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h bsd-aout.h \
|
||||
cdefs.h cpu.h disklabel.h display.h ecoff_machdep.h \
|
||||
elf_machdep.h endian.h endian_machdep.h float.h ieee.h ieeefp.h \
|
||||
kcore.h kdbparam.h limits.h lock.h math.h mips_opcode.h \
|
||||
int_types.h kcore.h kdbparam.h limits.h lock.h math.h mips_opcode.h \
|
||||
mouse.h param.h pcb.h pccons.h pmap.h proc.h profile.h psl.h \
|
||||
pte.h ptrace.h reg.h regdef.h regnum.h reloc.h setjmp.h signal.h \
|
||||
stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
3
sys/arch/arc/include/int_types.h
Normal file
3
sys/arch/arc/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:23 kleink Exp $ */
|
||||
|
||||
#include <mips/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.1 2000/05/09 21:55:58 bjh21 Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2000/06/26 15:42:23 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/arm26/include
|
||||
INCSDIR= /usr/include/arm26
|
||||
@ -6,7 +6,7 @@ INCSDIR= /usr/include/arm26
|
||||
INCS= ansi.h aout_machdep.h armreg.h asm.h boot.h bswap.h bus.h cdefs.h \
|
||||
cpu.h db_machdep.h disklabel.h \
|
||||
disklabel_acorn.h elf_machdep.h endian.h endian_machdep.h float.h \
|
||||
fp.h frame.h ieee.h ieeefp.h intr.h ipkdb.h irq.h \
|
||||
fp.h frame.h ieee.h ieeefp.h int_types.h intr.h ipkdb.h irq.h \
|
||||
limits.h lock.h math.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h ptrace.h reg.h \
|
||||
setjmp.h signal.h spl.h stdarg.h trap.h types.h undefined.h \
|
||||
|
55
sys/arch/arm26/include/int_types.h
Normal file
55
sys/arch/arm26/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:24 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.5 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _ARM26_INT_TYPES_H_
|
||||
#define _ARM26_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_ARM26_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.9 2000/04/29 03:31:47 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2000/06/26 15:42:24 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/arm32/include
|
||||
INCSDIR= /usr/include/arm32
|
||||
@ -6,10 +6,10 @@ INCSDIR= /usr/include/arm32
|
||||
INCS= ansi.h aout_machdep.h asm.h beep.h bootconfig.h bswap.h bus.h cdefs.h \
|
||||
conf.h cpu.h cpufunc.h cpus.h db_machdep.h devmap.h disklabel.h \
|
||||
disklabel_acorn.h endian.h endian_machdep.h float.h fp.h frame.h \
|
||||
ieee.h ieeefp.h iic.h intr.h io.h ipkdb.h irqhandler.h joystick.h \
|
||||
katelib.h kbd.h limits.h lock.h math.h mouse.h \
|
||||
ieee.h ieeefp.h iic.h int_types.h intr.h io.h ipkdb.h irqhandler.h \
|
||||
joystick.h katelib.h kbd.h limits.h lock.h math.h mouse.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
rtc.h setjmp.h signal.h stdarg.h sysarch.h trap.h types.h undefined.h \
|
||||
varargs.h vconsole.h vidc.h vmparam.h
|
||||
rtc.h setjmp.h signal.h stdarg.h sysarch.h trap.h types.h \
|
||||
undefined.h varargs.h vconsole.h vidc.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
55
sys/arch/arm32/include/int_types.h
Normal file
55
sys/arch/arm32/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:25 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.5 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _ARM32_INT_TYPES_H_
|
||||
#define _ARM32_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_ARM32_INT_TYPES_H_ */
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.11 2000/04/29 03:31:47 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.12 2000/06/26 15:42:26 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/atari/include
|
||||
INCSDIR= /usr/include/atari
|
||||
|
||||
INCS= ahdilabel.h ansi.h aout_machdep.h asm.h bswap.h cdefs.h cpu.h \
|
||||
cpufunc.h db_machdep.h disklabel.h elf_machdep.h endian.h \
|
||||
endian_machdep.h float.h frame.h intr.h ieee.h ieeefp.h kcore.h \
|
||||
limits.h lock.h math.h msioctl.h mtpr.h param.h pcb.h pmap.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h \
|
||||
endian_machdep.h float.h frame.h intr.h ieee.h ieeefp.h int_types.h \
|
||||
kcore.h limits.h lock.h math.h msioctl.h mtpr.h param.h pcb.h pmap.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h \
|
||||
svr4_machdep.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/atari/include/int_types.h
Normal file
3
sys/arch/atari/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:26 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.7 2000/04/29 03:31:48 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/06/26 15:42:27 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/bebox/include
|
||||
INCSDIR= /usr/include/bebox
|
||||
@ -6,9 +6,9 @@ INCSDIR= /usr/include/bebox
|
||||
INCS= ansi.h aout_machdep.h asm.h bat.h bootinfo.h bswap.h bus.h cdefs.h \
|
||||
conf.h cpu.h cpufunc.h db_machdep.h disklabel.h elf_machdep.h \
|
||||
endian.h endian_machdep.h float.h fpu.h frame.h ieee.h ieeefp.h \
|
||||
intr.h ipkdb.h kcore.h kgdb.h limits.h lock.h machine_type.h math.h \
|
||||
mouse.h param.h pcb.h pccons.h pio.h pmap.h powerpc.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h reloc.h setjmp.h signal.h \
|
||||
spkr.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
int_types.h intr.h ipkdb.h kcore.h kgdb.h limits.h lock.h \
|
||||
machine_type.h math.h mouse.h param.h pcb.h pccons.h pio.h pmap.h \
|
||||
powerpc.h proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h \
|
||||
setjmp.h signal.h spkr.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/bebox/include/int_types.h
Normal file
3
sys/arch/bebox/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:28 kleink Exp $ */
|
||||
|
||||
#include <powerpc/int_types.h>
|
@ -1,14 +1,14 @@
|
||||
# $NetBSD: Makefile,v 1.4 2000/04/29 03:31:48 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2000/06/26 15:42:31 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/cobalt/include
|
||||
INCSDIR= /usr/include/cobalt
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bsd-aout.h bswap.h cdefs.h \
|
||||
conf.h cpu.h db_machdep.h disklabel.h ecoff_machdep.h elf_machdep.h \
|
||||
endian.h endian_machdep.h float.h ieee.h ieeefp.h intr.h kcore.h \
|
||||
kdbparam.h leds.h limits.h lock.h locore.h math.h mips_opcode.h \
|
||||
nvram.h param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
|
||||
reg.h regdef.h regnum.h reloc.h setjmp.h signal.h stdarg.h trap.h \
|
||||
types.h varargs.h vmparam.h
|
||||
endian.h endian_machdep.h float.h ieee.h ieeefp.h int_types.h intr.h \
|
||||
kcore.h kdbparam.h leds.h limits.h lock.h locore.h math.h \
|
||||
mips_opcode.h nvram.h param.h pcb.h pmap.h proc.h profile.h psl.h \
|
||||
pte.h ptrace.h reg.h regdef.h regnum.h reloc.h setjmp.h signal.h \
|
||||
stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/cobalt/include/int_types.h
Normal file
3
sys/arch/cobalt/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:31 kleink Exp $ */
|
||||
|
||||
#include <mips/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.6 2000/04/29 03:31:48 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2000/06/26 15:42:32 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/evbsh3/include
|
||||
INCSDIR= /usr/include/evbsh3
|
||||
@ -6,9 +6,9 @@ INCSDIR= /usr/include/evbsh3
|
||||
INCS= ansi.h aout_machdep.h asm.h bootinfo.h bswap.h bus.h cdefs.h \
|
||||
coff_machdep.h conf.h cpu.h cpufunc.h cputypes.h db_machdep.h \
|
||||
disklabel.h elf_machdep.h endian.h endian_machdep.h float.h frame.h \
|
||||
ieee.h ieeefp.h intr.h limits.h lock.h math.h mmeye.h param.h pcb.h \
|
||||
pio.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h segments.h \
|
||||
setjmp.h shbvar.h signal.h stdarg.h \
|
||||
ieee.h ieeefp.h int_types.h intr.h limits.h lock.h math.h mmeye.h \
|
||||
param.h pcb.h pio.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
|
||||
reg.h segments.h setjmp.h shbvar.h signal.h stdarg.h \
|
||||
trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/evbsh3/include/int_types.h
Normal file
3
sys/arch/evbsh3/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:33 kleink Exp $ */
|
||||
|
||||
#include <sh3/int_types.h>
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.10 2000/04/29 03:31:49 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2000/06/26 15:42:34 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/hp300/include
|
||||
INCSDIR= /usr/include/hp300
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h bus.h cdefs.h cpu.h \
|
||||
db_machdep.h disklabel.h elf_machdep.h endian.h endian_machdep.h \
|
||||
float.h frame.h hp300spu.h hpux_machdep.h ieee.h ieeefp.h intr.h \
|
||||
kcore.h limits.h lock.h math.h param.h pcb.h pmap.h proc.h profile.h \
|
||||
psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h svr4_machdep.h \
|
||||
trap.h types.h varargs.h vmparam.h
|
||||
float.h frame.h hp300spu.h hpux_machdep.h ieee.h ieeefp.h int_types.h \
|
||||
intr.h kcore.h limits.h lock.h math.h param.h pcb.h pmap.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h \
|
||||
svr4_machdep.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/hp300/include/int_types.h
Normal file
3
sys/arch/hp300/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:35 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,14 +1,15 @@
|
||||
# $NetBSD: Makefile,v 1.5 2000/04/29 03:31:49 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2000/06/26 15:42:35 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/hpcmips/include
|
||||
INCSDIR= /usr/include/hpcmips
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bootinfo.h bswap.h bus.h \
|
||||
cdefs.h clock_machdep.h cpu.h db_machdep.h disklabel.h \
|
||||
ecoff_machdep.h elf_machdep.h endian.h endian_machdep.h intr.h \
|
||||
kcore.h limits.h lock.h locore.h math.h param.h pcb.h pmap.h proc.h \
|
||||
psl.h pte.h ptrace.h reg.h regdef.h regnum.h reloc.h signal.h \
|
||||
stdarg.h sysconf.h types.h vmparam.h setjmp.h float.h ieeefp.h ieee.h \
|
||||
bsd-aout.h kdbparam.h mips_opcode.h profile.h trap.h varargs.h
|
||||
ecoff_machdep.h elf_machdep.h endian.h endian_machdep.h int_types.h \
|
||||
intr.h kcore.h limits.h lock.h locore.h math.h param.h pcb.h pmap.h \
|
||||
proc.h psl.h pte.h ptrace.h reg.h regdef.h regnum.h reloc.h signal.h \
|
||||
stdarg.h sysconf.h types.h vmparam.h setjmp.h float.h \
|
||||
ieeefp.h ieee.h bsd-aout.h kdbparam.h mips_opcode.h profile.h \
|
||||
trap.h varargs.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/hpcmips/include/int_types.h
Normal file
3
sys/arch/hpcmips/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:36 kleink Exp $ */
|
||||
|
||||
#include <mips/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.12 2000/04/29 03:31:49 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2000/06/26 15:42:36 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/i386/include
|
||||
INCSDIR= /usr/include/i386
|
||||
@ -7,10 +7,11 @@ INCS= ansi.h aout_machdep.h apmvar.h asm.h bioscall.h bootinfo.h bswap.h \
|
||||
byte_swap.h bus.h cdefs.h conf.h cpu.h cpufunc.h cputypes.h \
|
||||
db_machdep.h disklabel.h elf_machdep.h endian.h endian_machdep.h \
|
||||
float.h frame.h freebsd_machdep.h gdt.h ibcs2_machdep.h ieee.h \
|
||||
ieeefp.h intr.h joystick.h kcore.h limits.h lock.h math.h mouse.h \
|
||||
npx.h param.h pcb.h pccons.h pio.h pmap.h \
|
||||
ieeefp.h int_types.h intr.h joystick.h kcore.h limits.h lock.h math.h \
|
||||
mouse.h npx.h param.h pcb.h pccons.h pio.h pmap.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h segments.h \
|
||||
setjmp.h signal.h specialreg.h spkr.h stdarg.h svr4_machdep.h \
|
||||
sysarch.h trap.h tss.h types.h varargs.h vm86.h vmparam.h
|
||||
setjmp.h signal.h specialreg.h spkr.h stdarg.h \
|
||||
svr4_machdep.h sysarch.h trap.h tss.h types.h varargs.h vm86.h \
|
||||
vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
55
sys/arch/i386/include/int_types.h
Normal file
55
sys/arch/i386/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:37 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.5 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _I386_INT_TYPES_H_
|
||||
#define _I386_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_I386_INT_TYPES_H_ */
|
@ -1,12 +1,12 @@
|
||||
# $NetBSD: Makefile,v 1.3 2000/04/29 03:31:50 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2000/06/26 15:42:38 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/luna68k/include
|
||||
INCSDIR= /usr/include/luna68k
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h bus.h cdefs.h \
|
||||
cpu.h db_machdep.h disklabel.h endian.h endian_machdep.h float.h \
|
||||
frame.h ieee.h ieeefp.h intr.h kcore.h limits.h lock.h math.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
setjmp.h signal.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
frame.h ieee.h ieeefp.h int_types.h intr.h kcore.h limits.h lock.h \
|
||||
math.h param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
|
||||
reg.h setjmp.h signal.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/luna68k/include/int_types.h
Normal file
3
sys/arch/luna68k/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:38 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.8 2000/04/29 03:31:50 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2000/06/26 15:42:39 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/m68k/include
|
||||
INCSDIR= /usr/include/m68k
|
||||
@ -6,8 +6,9 @@ INCSDIR= /usr/include/m68k
|
||||
INCS= ansi.h aout_machdep.h asm.h asm_single.h bswap.h cacheops.h \
|
||||
cacheops_20.h cacheops_30.h cacheops_40.h cacheops_60.h cdefs.h \
|
||||
cpu.h db_machdep.h elf_machdep.h endian.h endian_machdep.h float.h \
|
||||
frame.h ieee.h ieeefp.h kcore.h limits.h lock.h m68k.h math.h \
|
||||
param.h pcb.h profile.h psl.h ptrace.h reg.h setjmp.h signal.h \
|
||||
stdarg.h svr4_machdep.h sync_icache.h sysctl.h trap.h types.h varargs.h
|
||||
frame.h ieee.h ieeefp.h int_types.h kcore.h limits.h lock.h m68k.h \
|
||||
math.h param.h pcb.h profile.h psl.h ptrace.h reg.h setjmp.h signal.h \
|
||||
stdarg.h svr4_machdep.h sync_icache.h sysctl.h trap.h \
|
||||
types.h varargs.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
55
sys/arch/m68k/include/int_types.h
Normal file
55
sys/arch/m68k/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:40 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.9 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _M68K_INT_TYPES_H_
|
||||
#define _M68K_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_M68K_INT_TYPES_H_ */
|
@ -1,14 +1,14 @@
|
||||
# $NetBSD: Makefile,v 1.8 2000/04/29 03:31:50 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2000/06/26 15:42:42 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/mac68k/include
|
||||
INCSDIR= /usr/include/mac68k
|
||||
|
||||
INCS= adbsys.h ansi.h aout_machdep.h asm.h autoconf.h bswap.h bus.h cdefs.h \
|
||||
cpu.h db_machdep.h disklabel.h elf_machdep.h endian.h \
|
||||
endian_machdep.h float.h frame.h grfioctl.h ieee.h ieeefp.h intr.h \
|
||||
iteioctl.h kcore.h keyboard.h limits.h lock.h param.h math.h pcb.h \
|
||||
pio.h pmap.h proc.h profile.h psc.h psl.h pte.h ptrace.h reg.h \
|
||||
scsi_5380.h setjmp.h signal.h stdarg.h svr4_machdep.h trap.h \
|
||||
types.h varargs.h viareg.h vmparam.h z8530var.h
|
||||
endian_machdep.h float.h frame.h grfioctl.h ieee.h ieeefp.h \
|
||||
int_types.h intr.h iteioctl.h kcore.h keyboard.h limits.h lock.h \
|
||||
param.h math.h pcb.h pio.h pmap.h proc.h profile.h psc.h psl.h \
|
||||
pte.h ptrace.h reg.h scsi_5380.h setjmp.h signal.h stdarg.h \
|
||||
svr4_machdep.h trap.h types.h varargs.h viareg.h vmparam.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/mac68k/include/int_types.h
Normal file
3
sys/arch/mac68k/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:42 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.7 2000/04/29 03:31:51 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/06/26 15:42:43 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/macppc/include
|
||||
INCSDIR= /usr/include/macppc
|
||||
@ -6,9 +6,9 @@ INCSDIR= /usr/include/macppc
|
||||
INCS= adbsys.h ansi.h aout_machdep.h asm.h autoconf.h bat.h bswap.h bus.h \
|
||||
cdefs.h cpu.h db_machdep.h disklabel.h elf_machdep.h endian.h \
|
||||
endian_machdep.h float.h fpu.h frame.h grfioctl.h ieee.h ieeefp.h \
|
||||
intr.h ipkdb.h kcore.h keyboard.h limits.h lock.h machine_type.h \
|
||||
math.h param.h pcb.h pio.h pmap.h powerpc.h proc.h profile.h psl.h \
|
||||
pte.h ptrace.h reg.h reloc.h setjmp.h signal.h stdarg.h trap.h \
|
||||
types.h varargs.h vmparam.h z8530var.h
|
||||
int_types.h intr.h ipkdb.h kcore.h keyboard.h limits.h lock.h \
|
||||
machine_type.h math.h param.h pcb.h pio.h pmap.h powerpc.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h reloc.h setjmp.h signal.h \
|
||||
stdarg.h trap.h types.h varargs.h vmparam.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/macppc/include/int_types.h
Normal file
3
sys/arch/macppc/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:44 kleink Exp $ */
|
||||
|
||||
#include <powerpc/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.14 2000/04/29 03:31:51 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2000/06/26 15:42:45 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/mips/include
|
||||
INCSDIR= /usr/include/mips
|
||||
@ -6,10 +6,10 @@ INCSDIR= /usr/include/mips
|
||||
INCS= ansi.h aout_machdep.h asm.h bswap.h bsd-aout.h cachectl.h \
|
||||
cdefs.h cpu.h cpuregs.h db_machdep.h ecoff_machdep.h \
|
||||
elf_machdep.h endian.h endian_machdep.h float.h ieee.h ieeefp.h \
|
||||
kcore.h kdbparam.h limits.h lock.h locore.h math.h mips1_pte.h \
|
||||
mips3_pte.h mips_opcode.h mips_param.h pcb.h pmap.h proc.h profile.h \
|
||||
psl.h pte.h ptrace.h reg.h regdef.h regnum.h reloc.h setjmp.h \
|
||||
signal.h stdarg.h sysarch.h trap.h types.h varargs.h \
|
||||
int_types.h kcore.h kdbparam.h limits.h lock.h locore.h math.h \
|
||||
mips1_pte.h mips3_pte.h mips_opcode.h mips_param.h pcb.h pmap.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h regdef.h regnum.h \
|
||||
reloc.h setjmp.h signal.h stdarg.h sysarch.h trap.h types.h varargs.h \
|
||||
vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
58
sys/arch/mips/include/int_types.h
Normal file
58
sys/arch/mips/include/int_types.h
Normal file
@ -0,0 +1,58 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:47 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1992, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to Berkeley by
|
||||
* Ralph Campbell.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 8.3 (Berkeley) 1/5/94
|
||||
*/
|
||||
|
||||
#ifndef _MIPS_INT_TYPES_H_
|
||||
#define _MIPS_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_MIPS_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.6 2000/04/29 03:31:51 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2000/06/26 15:42:48 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/mmeye/include
|
||||
INCSDIR= /usr/include/mmeye
|
||||
@ -6,8 +6,8 @@ INCSDIR= /usr/include/mmeye
|
||||
INCS= ansi.h aout_machdep.h asm.h bootinfo.h bswap.h bus.h cdefs.h \
|
||||
coff_machdep.h conf.h cpu.h cpufunc.h cputypes.h db_machdep.h \
|
||||
disklabel.h elf_machdep.h endian.h endian_machdep.h float.h frame.h \
|
||||
ieee.h ieeefp.h intr.h limits.h lock.h loadfile_machdep.h math.h \
|
||||
mmeye.h param.h pcb.h pio.h pmap.h proc.h profile.h psl.h pte.h \
|
||||
ieee.h ieeefp.h int_types.h intr.h limits.h lock.h loadfile_machdep.h \
|
||||
math.h mmeye.h param.h pcb.h pio.h pmap.h proc.h profile.h psl.h pte.h \
|
||||
ptrace.h reg.h segments.h setjmp.h shbvar.h signal.h stdarg.h \
|
||||
trap.h types.h varargs.h vmparam.h
|
||||
|
||||
|
3
sys/arch/mmeye/include/int_types.h
Normal file
3
sys/arch/mmeye/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:49 kleink Exp $ */
|
||||
|
||||
#include <sh3/int_types.h>
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.9 2000/04/29 03:31:51 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2000/06/26 15:42:50 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/mvme68k/include
|
||||
INCSDIR= /usr/include/mvme68k
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h cdefs.h cpu.h \
|
||||
db_machdep.h disklabel.h elf_machdep.h endian.h endian_machdep.h \
|
||||
float.h frame.h ieee.h ieeefp.h intr.h kcore.h limits.h lock.h math.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h prom.h psl.h pte.h ptrace.h \
|
||||
reg.h setjmp.h signal.h stdarg.h svr4_machdep.h trap.h types.h \
|
||||
varargs.h vmparam.h z8530var.h
|
||||
float.h frame.h ieee.h ieeefp.h int_types.h intr.h kcore.h limits.h \
|
||||
lock.h math.h param.h pcb.h pmap.h proc.h profile.h prom.h psl.h \
|
||||
pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h svr4_machdep.h trap.h \
|
||||
types.h varargs.h vmparam.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/mvme68k/include/int_types.h
Normal file
3
sys/arch/mvme68k/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:50 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.4 2000/04/29 03:31:52 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2000/06/26 15:42:51 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/news68k/include
|
||||
INCSDIR= /usr/include/news68k
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h cdefs.h cpu.h \
|
||||
db_machdep.h disklabel.h elf_machdep.h endian.h endian_machdep.h \
|
||||
float.h frame.h ieee.h ieeefp.h intr.h kcore.h limits.h lock.h math.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
setjmp.h signal.h stdarg.h svr4_machdep.h trap.h \
|
||||
float.h frame.h ieee.h ieeefp.h int_types.h intr.h kcore.h limits.h \
|
||||
lock.h math.h param.h pcb.h pmap.h proc.h profile.h psl.h pte.h \
|
||||
ptrace.h reg.h setjmp.h signal.h stdarg.h svr4_machdep.h trap.h \
|
||||
types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/news68k/include/int_types.h
Normal file
3
sys/arch/news68k/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:52 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.16 2000/04/29 03:31:52 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.17 2000/06/26 15:42:53 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/newsmips/include
|
||||
INCSDIR= /usr/include/newsmips
|
||||
@ -6,10 +6,10 @@ INCSDIR= /usr/include/newsmips
|
||||
INCS= adrsmap.h ansi.h asm.h aout_machdep.h apbus.h apcall.h autoconf.h \
|
||||
bswap.h bsd-aout.h cdefs.h conf.h cpu.h db_machdep.h disklabel.h \
|
||||
ecoff_machdep.h elf_machdep.h endian.h endian_machdep.h float.h \
|
||||
framebuf.h ieee.h ieeefp.h intr.h kcore.h kdbparam.h keyboard.h \
|
||||
limits.h lock.h locore.h machConst.h math.h mips_opcode.h mouse.h \
|
||||
param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
regdef.h regnum.h reloc.h romcall.h setjmp.h signal.h stdarg.h \
|
||||
framebuf.h ieee.h ieeefp.h int_types.h intr.h kcore.h kdbparam.h \
|
||||
keyboard.h limits.h lock.h locore.h machConst.h math.h mips_opcode.h \
|
||||
mouse.h param.h pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h \
|
||||
reg.h regdef.h regnum.h reloc.h romcall.h setjmp.h signal.h stdarg.h \
|
||||
trap.h types.h varargs.h vmparam.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/newsmips/include/int_types.h
Normal file
3
sys/arch/newsmips/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:54 kleink Exp $ */
|
||||
|
||||
#include <mips/int_types.h>
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.7 2000/04/29 03:31:52 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/06/26 15:42:55 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/next68k/include
|
||||
INCSDIR= /usr/include/next68k
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h bus.h bus_dma.h \
|
||||
bus_space.h cdefs.h cpu.h db_machdep.h disklabel.h elf_machdep.h \
|
||||
endian.h endian_machdep.h float.h frame.h ieee.h ieeefp.h intr.h \
|
||||
kcore.h limits.h lock.h math.h param.h pcb.h pmap.h proc.h profile.h \
|
||||
psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h svr4_machdep.h \
|
||||
trap.h types.h varargs.h vmparam.h z8530var.h
|
||||
endian.h endian_machdep.h float.h frame.h ieee.h ieeefp.h int_types.h \
|
||||
intr.h kcore.h limits.h lock.h math.h param.h pcb.h pmap.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h \
|
||||
svr4_machdep.h trap.h types.h varargs.h vmparam.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/next68k/include/int_types.h
Normal file
3
sys/arch/next68k/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:56 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,12 +1,12 @@
|
||||
# $NetBSD: Makefile,v 1.6 2000/04/29 03:31:53 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2000/06/26 15:42:57 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/ofppc/include
|
||||
INCSDIR= /usr/include/ofppc
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h bat.h bswap.h cdefs.h cpu.h db_machdep.h \
|
||||
disklabel.h elf_machdep.h endian.h endian_machdep.h float.h fpu.h \
|
||||
frame.h ieee.h ieeefp.h ipkdb.h irq.h kcore.h limits.h lock.h \
|
||||
machine_type.h math.h param.h pcb.h pmap.h powerpc.h proc.h \
|
||||
frame.h ieee.h ieeefp.h int_types.h ipkdb.h irq.h kcore.h limits.h \
|
||||
lock.h machine_type.h math.h param.h pcb.h pmap.h powerpc.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h reloc.h setjmp.h signal.h \
|
||||
stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
|
3
sys/arch/ofppc/include/int_types.h
Normal file
3
sys/arch/ofppc/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:42:58 kleink Exp $ */
|
||||
|
||||
#include <powerpc/int_types.h>
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.7 2000/04/29 03:31:53 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/06/26 15:43:02 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/pc532/include
|
||||
INCSDIR= /usr/include/pc532
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h byte_swap.h cdefs.h \
|
||||
conf.h cpu.h cpufunc.h db_machdep.h disklabel.h endian.h \
|
||||
endian_machdep.h float.h fpu.h frame.h icu.h ieee.h ieeefp.h jmpbuf.h \
|
||||
kcore.h limits.h lock.h math.h mtpr.h param.h pcb.h pmap.h proc.h \
|
||||
profile.h psl.h pte.h ptrace.h reg.h setjmp.h signal.h stdarg.h \
|
||||
trap.h types.h varargs.h vmparam.h
|
||||
endian_machdep.h float.h fpu.h frame.h icu.h ieee.h ieeefp.h \
|
||||
int_types.h jmpbuf.h kcore.h limits.h lock.h math.h mtpr.h param.h \
|
||||
pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h setjmp.h \
|
||||
signal.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
55
sys/arch/pc532/include/int_types.h
Normal file
55
sys/arch/pc532/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:02 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.5 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _NS32K_INT_TYPES_H_
|
||||
#define _NS32K_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_NS32K_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.17 2000/04/29 03:31:53 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.18 2000/06/26 15:43:03 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/pmax/include
|
||||
INCSDIR= /usr/include/pmax
|
||||
@ -6,10 +6,10 @@ INCSDIR= /usr/include/pmax
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h bsd-aout.h bus.h \
|
||||
cdefs.h clock_machdep.h conf.h cpu.h db_machdep.h dc7085cons.h \
|
||||
disklabel.h ecoff_machdep.h elf_machdep.h endian.h endian_machdep.h \
|
||||
fbio.h fbvar.h float.h ieee.h ieeefp.h intr.h kcore.h kdbparam.h \
|
||||
limits.h lock.h locore.h math.h mips_opcode.h param.h pcb.h pmap.h \
|
||||
pmioctl.h proc.h profile.h psl.h pte.h ptrace.h reg.h regdef.h \
|
||||
regnum.h reloc.h setjmp.h signal.h stdarg.h tc_machdep.h trap.h \
|
||||
types.h varargs.h vmparam.h
|
||||
fbio.h fbvar.h float.h ieee.h ieeefp.h int_types.h intr.h kcore.h \
|
||||
kdbparam.h limits.h lock.h locore.h math.h mips_opcode.h param.h \
|
||||
pcb.h pmap.h pmioctl.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
regdef.h regnum.h reloc.h setjmp.h signal.h stdarg.h tc_machdep.h \
|
||||
trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/pmax/include/int_types.h
Normal file
3
sys/arch/pmax/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:04 kleink Exp $ */
|
||||
|
||||
#include <mips/int_types.h>
|
@ -1,11 +1,11 @@
|
||||
# $NetBSD: Makefile,v 1.10 2000/04/29 03:31:54 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2000/06/26 15:43:05 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/powerpc/include
|
||||
INCSDIR= /usr/include/powerpc
|
||||
|
||||
INCS= ansi.h aout_machdep.h asm.h bat.h bswap.h cdefs.h cpu.h db_machdep.h \
|
||||
elf_machdep.h endian.h endian_machdep.h float.h fpu.h frame.h \
|
||||
hid_601.h ieee.h ieeefp.h ipkdb.h kcore.h limits.h lock.h \
|
||||
hid_601.h ieee.h ieeefp.h int_types.h ipkdb.h kcore.h limits.h lock.h \
|
||||
machine_type.h math.h param.h pcb.h pmap.h proc.h profile.h \
|
||||
psl.h pte.h ptrace.h reg.h reloc.h setjmp.h signal.h stdarg.h \
|
||||
trap.h types.h varargs.h
|
||||
|
51
sys/arch/powerpc/include/int_types.h
Normal file
51
sys/arch/powerpc/include/int_types.h
Normal file
@ -0,0 +1,51 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:06 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 1995 Wolfgang Solfrank.
|
||||
* Copyright (C) 1995 TooLs GmbH.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by TooLs GmbH.
|
||||
* 4. The name of TooLs GmbH may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef _POWERPC_INT_TYPES_H_
|
||||
#define _POWERPC_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_POWERPC_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.3 2000/04/29 03:31:54 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2000/06/26 15:43:07 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/prep/include
|
||||
INCSDIR= /usr/include/prep
|
||||
@ -6,9 +6,9 @@ INCSDIR= /usr/include/prep
|
||||
INCS= ansi.h aout_machdep.h asm.h bat.h bootinfo.h bswap.h bus.h cdefs.h \
|
||||
conf.h cpu.h cpufunc.h db_machdep.h disklabel.h elf_machdep.h \
|
||||
endian.h endian_machdep.h float.h fpu.h frame.h ieee.h ieeefp.h \
|
||||
intr.h ipkdb.h kcore.h kgdb.h limits.h lock.h machine_type.h \
|
||||
math.h mouse.h param.h pcb.h pccons.h pio.h pmap.h powerpc.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h setjmp.h \
|
||||
signal.h spkr.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
int_types.h intr.h ipkdb.h kcore.h kgdb.h limits.h lock.h \
|
||||
machine_type.h math.h mouse.h param.h pcb.h pccons.h pio.h pmap.h \
|
||||
powerpc.h proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h \
|
||||
setjmp.h signal.h spkr.h stdarg.h trap.h types.h varargs.h vmparam.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/prep/include/int_types.h
Normal file
3
sys/arch/prep/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:07 kleink Exp $ */
|
||||
|
||||
#include <powerpc/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.1 2000/06/14 15:39:55 soren Exp $
|
||||
# $NetBSD: Makefile,v 1.2 2000/06/26 15:43:09 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/sgimips/include
|
||||
INCSDIR= /usr/include/sgimips
|
||||
@ -6,7 +6,7 @@ INCSDIR= /usr/include/sgimips
|
||||
INCS= asm.h ansi.h aout_machdep.h arcs.h autoconf.h bsd-aout.h bswap.h \
|
||||
cdefs.h conf.h cpu.h db_machdep.h disklabel.h ecoff_machdep.h \
|
||||
elf_machdep.h endian.h endian_machdep.h float.h ieee.h ieeefp.h \
|
||||
intr.h kcore.h kdbparam.h limits.h lock.h locore.h math.h \
|
||||
int_types.h intr.h kcore.h kdbparam.h limits.h lock.h locore.h math.h \
|
||||
mips_opcode.h param.h pci_machdep.h pcb.h pmap.h proc.h profile.h \
|
||||
psl.h pte.h ptrace.h reg.h regdef.h regnum.h reloc.h setjmp.h signal.h \
|
||||
stdarg.h trap.h types.h varargs.h vmparam.h z8530var.h
|
||||
|
3
sys/arch/sgimips/include/int_types.h
Normal file
3
sys/arch/sgimips/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:09 kleink Exp $ */
|
||||
|
||||
#include <mips/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.7 2000/04/29 03:31:54 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/06/26 15:43:10 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/sh3/include
|
||||
INCSDIR= /usr/include/sh3
|
||||
@ -6,11 +6,11 @@ INCSDIR= /usr/include/sh3
|
||||
INCS= ansi.h aout_machdep.h asm.h bootinfo.h bscreg.h bswap.h bus.h \
|
||||
ccrreg.h cdefs.h coff_machdep.h cpgreg.h cpu.h cpufunc.h cputypes.h \
|
||||
db_disasm.h db_machdep.h disklabel.h elf_machdep.h endian.h \
|
||||
endian_machdep.h float.h frame.h ieee.h ieeefp.h intcreg.h intr.h \
|
||||
limits.h lock.h math.h mmureg.h param.h pcb.h pfcreg.h pio.h pmap.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h rtcreg.h scifreg.h \
|
||||
scireg.h segments.h setjmp.h sh_opcode.h shbvar.h signal.h stdarg.h \
|
||||
tmureg.h trap.h trapreg.h types.h ubcreg.h va-sh.h varargs.h \
|
||||
vmparam.h wdogvar.h wdtreg.h
|
||||
endian_machdep.h float.h frame.h ieee.h ieeefp.h int_types.h \
|
||||
intcreg.h intr.h limits.h lock.h math.h mmureg.h param.h pcb.h \
|
||||
pfcreg.h pio.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h \
|
||||
rtcreg.h scifreg.h scireg.h segments.h setjmp.h sh_opcode.h \
|
||||
shbvar.h signal.h stdarg.h tmureg.h trap.h trapreg.h types.h \
|
||||
ubcreg.h va-sh.h varargs.h vmparam.h wdogvar.h wdtreg.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
55
sys/arch/sh3/include/int_types.h
Normal file
55
sys/arch/sh3/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:11 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.5 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _SH3_INT_TYPES_H_
|
||||
#define _SH3_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_SH3_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.13 2000/04/29 03:45:43 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.14 2000/06/26 15:43:12 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/sparc/include
|
||||
INCSDIR= /usr/include/sparc
|
||||
@ -6,8 +6,8 @@ INCSDIR= /usr/include/sparc
|
||||
INCS= ansi.h aout_machdep.h apmvar.h asm.h autoconf.h bswap.h \
|
||||
bootinfo.h cdefs.h cgtworeg.h conf.h cpu.h disklabel.h eeprom.h \
|
||||
elf_machdep.h endian.h endian_machdep.h fbio.h float.h \
|
||||
frame.h fsr.h idprom.h ieee.h ieeefp.h kbd.h kbio.h kcore.h \
|
||||
limits.h lock.h math.h oldmon.h openpromio.h param.h \
|
||||
frame.h fsr.h idprom.h ieee.h ieeefp.h int_types.h kbd.h kbio.h \
|
||||
kcore.h limits.h lock.h math.h oldmon.h openpromio.h param.h \
|
||||
pcb.h pmap.h proc.h profile.h psl.h pte.h ptrace.h reg.h reloc.h \
|
||||
setjmp.h signal.h stdarg.h tctrl.h trap.h \
|
||||
types.h varargs.h vmparam.h vuid_event.h
|
||||
|
72
sys/arch/sparc/include/int_types.h
Normal file
72
sys/arch/sparc/include/int_types.h
Normal file
@ -0,0 +1,72 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:12 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This software was developed by the Computer Systems Engineering group
|
||||
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
||||
* contributed to Berkeley.
|
||||
*
|
||||
* All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Lawrence Berkeley Laboratory.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 8.1 (Berkeley) 6/11/93
|
||||
*/
|
||||
|
||||
#ifndef _SPARC_INT_TYPES_H_
|
||||
#define _SPARC_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
|
||||
#ifdef __arch64__
|
||||
/* 64-bit compiler */
|
||||
typedef long __int64_t;
|
||||
typedef unsigned long __uint64_t;
|
||||
#else
|
||||
/* 32-bit compiler */
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
#endif
|
||||
|
||||
#endif /* !_SPARC_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.6 2000/04/29 03:45:43 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2000/06/26 15:43:14 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/sparc64/include
|
||||
INCSDIR= /usr/include/sparc64
|
||||
@ -7,10 +7,10 @@ INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h \
|
||||
bsd_openprom.h bus.h cdefs.h cgtworeg.h conf.h cpu.h ctlreg.h \
|
||||
db_machdep.h disklabel.h eeprom.h elf_machdep.h endian.h \
|
||||
endian_machdep.h fbio.h fbvar.h float.h frame.h fsr.h idprom.h ieee.h \
|
||||
ieeefp.h instr.h kbd.h kbio.h kcore.h limits.h lock.h math.h oldmon.h \
|
||||
openpromio.h param.h pcb.h pmap.h proc.h profile.h psl.h pte.h \
|
||||
ptrace.h reg.h reloc.h remote-sl.h setjmp.h signal.h stdarg.h \
|
||||
svr4_machdep.h trap.h types.h varargs.h vmparam.h vuid_event.h \
|
||||
z8530var.h
|
||||
ieeefp.h instr.h int_types.h kbd.h kbio.h kcore.h limits.h lock.h \
|
||||
math.h oldmon.h openpromio.h param.h pcb.h pmap.h proc.h profile.h \
|
||||
psl.h pte.h ptrace.h reg.h reloc.h remote-sl.h setjmp.h signal.h \
|
||||
stdarg.h svr4_machdep.h trap.h types.h varargs.h vmparam.h \
|
||||
vuid_event.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
72
sys/arch/sparc64/include/int_types.h
Normal file
72
sys/arch/sparc64/include/int_types.h
Normal file
@ -0,0 +1,72 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:14 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This software was developed by the Computer Systems Engineering group
|
||||
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
||||
* contributed to Berkeley.
|
||||
*
|
||||
* All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Lawrence Berkeley Laboratory.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 8.1 (Berkeley) 6/11/93
|
||||
*/
|
||||
|
||||
#ifndef _SPARC64_INT_TYPES_H_
|
||||
#define _SPARC64_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
|
||||
#ifdef __arch64__
|
||||
/* 64-bit compiler */
|
||||
typedef long __int64_t;
|
||||
typedef unsigned long __uint64_t;
|
||||
#else
|
||||
/* 32-bit compiler */
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
#endif
|
||||
|
||||
#endif /* !_SPARC64_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.9 2000/04/29 03:31:55 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2000/06/26 15:43:15 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/sun3/include
|
||||
INCSDIR= /usr/include/sun3
|
||||
@ -6,10 +6,11 @@ INCSDIR= /usr/include/sun3
|
||||
INCS= ansi.h aout_machdep.h asm.h autoconf.h bswap.h cdefs.h cg2reg.h cpu.h \
|
||||
db_machdep.h disklabel.h dvma.h dvma3.h dvma3x.h eeprom.h \
|
||||
elf_machdep.h endian.h endian_machdep.h fbio.h float.h frame.h \
|
||||
idprom.h ieee.h ieeefp.h kbd.h kbio.h kcore.h leds.h limits.h lock.h \
|
||||
math.h mc68851.h mon.h param.h param3.h param3x.h pcb.h pmap.h \
|
||||
pmap3.h pmap3x.h proc.h profile.h psl.h pte.h pte3.h pte3x.h ptrace.h \
|
||||
reg.h setjmp.h signal.h stdarg.h svr4_machdep.h trap.h types.h \
|
||||
varargs.h vmparam.h vmparam3.h vmparam3x.h vuid_event.h z8530var.h
|
||||
idprom.h ieee.h ieeefp.h int_types.h kbd.h kbio.h kcore.h leds.h \
|
||||
limits.h lock.h math.h mc68851.h mon.h param.h param3.h param3x.h \
|
||||
pcb.h pmap.h pmap3.h pmap3x.h proc.h profile.h psl.h pte.h pte3.h \
|
||||
pte3x.h ptrace.h reg.h setjmp.h signal.h stdarg.h svr4_machdep.h \
|
||||
trap.h types.h varargs.h vmparam.h vmparam3.h vmparam3x.h \
|
||||
vuid_event.h z8530var.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/sun3/include/int_types.h
Normal file
3
sys/arch/sun3/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:16 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.12 2000/06/11 23:32:55 matt Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2000/06/26 15:43:18 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/vax/include
|
||||
INCSDIR= /usr/include/vax
|
||||
@ -9,7 +9,7 @@ INCS= ansi.h aout_machdep.h asm.h \
|
||||
db_machdep.h disklabel.h \
|
||||
elf_machdep.h endian.h endian_machdep.h \
|
||||
float.h frame.h \
|
||||
ibcs2_machdep.h ioa.h \
|
||||
ibcs2_machdep.h int_types.h ioa.h \
|
||||
ka410.h ka420.h ka43.h ka630.h ka650.h ka750.h ka820.h \
|
||||
loadfile_machdep.h lcgreg.h limits.h lock.h \
|
||||
macros.h math.h mtpr.h \
|
||||
|
55
sys/arch/vax/include/int_types.h
Normal file
55
sys/arch/vax/include/int_types.h
Normal file
@ -0,0 +1,55 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:18 kleink Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)types.h 7.5 (Berkeley) 3/9/91
|
||||
*/
|
||||
|
||||
#ifndef _VAX_INT_TYPES_H_
|
||||
#define _VAX_INT_TYPES_H_
|
||||
|
||||
/*
|
||||
* 7.18.1.1 Exact-width integer types
|
||||
*/
|
||||
typedef __signed char __int8_t;
|
||||
typedef unsigned char __uint8_t;
|
||||
typedef short __int16_t;
|
||||
typedef unsigned short __uint16_t;
|
||||
typedef int __int32_t;
|
||||
typedef unsigned int __uint32_t;
|
||||
/* LONGLONG */
|
||||
typedef long long __int64_t;
|
||||
/* LONGLONG */
|
||||
typedef unsigned long long __uint64_t;
|
||||
|
||||
#endif /* !_VAX_INT_TYPES_H_ */
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.13 2000/04/29 03:31:56 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.14 2000/06/26 15:43:19 kleink Exp $
|
||||
|
||||
KDIR= /sys/arch/x68k/include
|
||||
INCSDIR= /usr/include/x68k
|
||||
@ -6,10 +6,10 @@ INCSDIR= /usr/include/x68k
|
||||
INCS= ansi.h aout_machdep.h asm.h bootinfo.h bswap.h bsd_audioio.h bus.h \
|
||||
cdefs.h cpu.h cpufunc.h db_machdep.h disklabel.h elf_machdep.h \
|
||||
endian.h endian_machdep.h float.h frame.h grfioctl.h ieee.h ieeefp.h \
|
||||
intr.h iteioctl.h kbd.h kbio.h kcore.h math.h lock.h limits.h \
|
||||
opmbellio.h param.h parioctl.h pcb.h pci_machdep.h pmap.h powioctl.h \
|
||||
proc.h profile.h psl.h pte.h ptrace.h reg.h remote-sl.h setjmp.h \
|
||||
signal.h sram.h stdarg.h svr4_machdep.h trap.h types.h varargs.h \
|
||||
vmparam.h vuid_event.h
|
||||
int_types.h intr.h iteioctl.h kbd.h kbio.h kcore.h math.h lock.h \
|
||||
limits.h opmbellio.h param.h parioctl.h pcb.h pci_machdep.h pmap.h \
|
||||
powioctl.h proc.h profile.h psl.h pte.h ptrace.h reg.h remote-sl.h \
|
||||
setjmp.h signal.h sram.h stdarg.h svr4_machdep.h trap.h types.h \
|
||||
varargs.h vmparam.h vuid_event.h
|
||||
|
||||
.include <bsd.kinc.mk>
|
||||
|
3
sys/arch/x68k/include/int_types.h
Normal file
3
sys/arch/x68k/include/int_types.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* $NetBSD: int_types.h,v 1.1 2000/06/26 15:43:20 kleink Exp $ */
|
||||
|
||||
#include <m68k/int_types.h>
|
Loading…
Reference in New Issue
Block a user