summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-18 13:31:59 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-18 13:31:59 +0000
commit2c77cbff307802acb9a778d304166dc81ad9e19a (patch)
tree852474731f3bd14fdbd7d6d7fe4825b1d474e3b9 /c/src/lib/libcpu
parent2008-08-18 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2c77cbff307802acb9a778d304166dc81ad9e19a.tar.bz2
Add missing prototypes.
Diffstat (limited to 'c/src/lib/libcpu')
-rw-r--r--c/src/lib/libcpu/bfin/clock/tod.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libcpu/bfin/clock/tod.h b/c/src/lib/libcpu/bfin/clock/tod.h
index 244f5f3ae4..18f257bebe 100644
--- a/c/src/lib/libcpu/bfin/clock/tod.h
+++ b/c/src/lib/libcpu/bfin/clock/tod.h
@@ -41,20 +41,20 @@ void getRealTime(
* Read real time from RTC and set it to RTEMS' clock manager
*/
-void setRealTimeToRTEMS();
+void setRealTimeToRTEMS(void);
/*
* Read time from RTEMS' clock manager and set it to RTC
*/
-void setRealTimeFromRTEMS();
+void setRealTimeFromRTEMS(void);
/*
* Return the difference between RTC and RTEMS' clock manager time in minutes.
* If the difference is greater than 1 day, this returns 9999.
*/
-int checkRealTime();
+int checkRealTime(void);
#ifdef __cplusplus
}