Merge in recent changes:

GC the unused `physadr' type, which was not able to hold a complete physical
address on 2 architectures anyhow.  Also, move the definition of the `label_t'
type inside _KERNEL protection, since it is specific to the in-kernel
setjmp()/longjmp() implementations.
This commit is contained in:
kleink 1998-06-20 16:52:53 +00:00
parent 8d596302c7
commit 4982314902

@ -1,4 +1,4 @@
/* $NetBSD: types.h,v 1.1.1.1 1998/06/20 04:58:52 eeh Exp $ */
/* $NetBSD: types.h,v 1.2 1998/06/20 16:52:53 kleink Exp $ */
/*
* Copyright (c) 1992, 1993
@ -53,11 +53,7 @@
#include <sys/cdefs.h>
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
typedef struct _physadr {
short r[1];
} *physadr;
#if defined(_KERNEL)
typedef struct label_t {
int val[2];
} label_t;