From c3be47693c661a52b10a3062006c6aadab586a8d Mon Sep 17 00:00:00 2001 From: scw Date: Tue, 21 Jan 2003 11:26:04 +0000 Subject: [PATCH] Use 'int' instead of 'u_int32_t' in a couple of places to avoid depending on sys/types.h. --- sys/arch/sh5/include/mcontext.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/sh5/include/mcontext.h b/sys/arch/sh5/include/mcontext.h index 3c2337b94506..992fc19d37ea 100644 --- a/sys/arch/sh5/include/mcontext.h +++ b/sys/arch/sh5/include/mcontext.h @@ -1,4 +1,4 @@ -/* $NetBSD: mcontext.h,v 1.1 2003/01/19 19:49:49 scw Exp $ */ +/* $NetBSD: mcontext.h,v 1.2 2003/01/21 11:26:04 scw Exp $ */ /* * Copyright 2002 Wasabi Systems, Inc. @@ -74,8 +74,8 @@ typedef float __fpreg_single_t; typedef double __fpreg_double_t; typedef struct { - u_int32_t __fp_scr; - u_int32_t __fp_pad; + int __fp_scr; + int __fp_pad; union { __fpreg_single_t __u_fp_single[64]; __fpreg_double_t __u_fp_double[32];