Move the cpuid_t type-defintion out of the _NETBSD_SOURCE condition. Should

fix the compilation of various applications.  Discussed with <martin>.
This commit is contained in:
rmind 2008-01-21 00:27:24 +00:00
parent 569f933f28
commit 0bc5ae744b
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: types.h,v 1.78 2008/01/15 03:37:12 rmind Exp $ */
/* $NetBSD: types.h,v 1.79 2008/01/21 00:27:24 rmind Exp $ */
/*-
* Copyright (c) 1982, 1986, 1991, 1993, 1994
@ -107,8 +107,6 @@ typedef unsigned char unchar; /* Sys V compatibility */
typedef unsigned short ushort; /* Sys V compatibility */
typedef unsigned int uint; /* Sys V compatibility */
typedef unsigned long ulong; /* Sys V compatibility */
typedef u_long cpuid_t;
#endif
typedef uint64_t u_quad_t; /* quads */
@ -199,6 +197,8 @@ typedef int32_t dtime_t; /* on-disk time_t */
typedef int mqd_t;
typedef unsigned long cpuid_t;
typedef int psetid_t;
#if defined(_KERNEL) || defined(_STANDALONE)