2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>

* bsplibc.c, clockdrv_shell.c, ide_ctrl.c, tod.c,
	gdbstub/rtems-stub-glue.c: Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 05:21:47 +00:00
parent 6505d3facc
commit a2ac7e100a
6 changed files with 46 additions and 41 deletions

View File

@@ -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;