From 89c30bb2e37eaaabee554cf3cba8323ebba9dea7 Mon Sep 17 00:00:00 2001 From: cgd Date: Mon, 5 Jun 1995 00:49:45 +0000 Subject: do the right thing with fixed-size types. --- sys/dev/ic/dc21040reg.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') 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 -- cgit