From a2ac7e100a2a3b061e8afe0d15d8867ce4abe63e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 31 Mar 2004 05:21:47 +0000 Subject: 2004-03-31 Ralf Corsepius * bsplibc.c, clockdrv_shell.c, ide_ctrl.c, tod.c, gdbstub/rtems-stub-glue.c: Convert to using c99 fixed size types. --- c/src/lib/libbsp/shared/tod.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c/src/lib/libbsp/shared/tod.c') diff --git a/c/src/lib/libbsp/shared/tod.c b/c/src/lib/libbsp/shared/tod.c index c09bd592ba..8e1a1c390c 100644 --- a/c/src/lib/libbsp/shared/tod.c +++ b/c/src/lib/libbsp/shared/tod.c @@ -220,14 +220,14 @@ int setRealTime( */ /* XXX this routine should be part of the public RTEMS interface */ -unsigned32 _TOD_To_seconds( rtems_time_of_day *tod ); +uint32_t _TOD_To_seconds( rtems_time_of_day *tod ); int checkRealTime() { rtems_time_of_day rtems_tod; rtems_time_of_day rtc_tod; - unsigned32 rtems_time; - unsigned32 rtc_time; + uint32_t rtems_time; + uint32_t rtc_time; if (!RTC_Present) return -1; -- cgit v1.2.3