diff options
| author | cgd <cgd@NetBSD.org> | 1995-06-05 00:49:45 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 1995-06-05 00:49:45 +0000 |
| commit | 89c30bb2e37eaaabee554cf3cba8323ebba9dea7 (patch) | |
| tree | e151c42ab7f7ca7d4b0ed985db0ed55d39d45249 /sys/dev | |
| parent | 96caf354eb098ce4ae251bdb1be8096c3c4bf0b4 (diff) | |
do the right thing with fixed-size types.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/dc21040reg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/dc21040reg.h b/sys/dev/ic/dc21040reg.h index f6fe16b0428..f34b251769c 100644 --- a/sys/dev/ic/dc21040reg.h +++ b/sys/dev/ic/dc21040reg.h @@ -1,4 +1,4 @@ -/* $NetBSD: dc21040reg.h,v 1.2 1995/06/05 00:46:30 cgd Exp $ */ +/* $NetBSD: dc21040reg.h,v 1.3 1995/06/05 00:49:45 cgd Exp $ */ /*- * Copyright (c) 1994, 1995 Matt Thomas (thomas@lkg.dec.com) @@ -27,8 +27,8 @@ #if !defined(_DC21040_H) #define _DC21040_H -typedef signed int tulip_sint32_t; -typedef unsigned int tulip_uint32_t; +typedef int32_t tulip_sint32_t; +typedef u_int32_t tulip_uint32_t; #if defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN #define TULIP_BITFIELD2(a, b) b, a |
