summaryrefslogtreecommitdiffstats
path: root/osdep/timer-lx.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/timer-lx.c')
-rw-r--r--osdep/timer-lx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/osdep/timer-lx.c b/osdep/timer-lx.c
index 104cd97391..10f95be54b 100644
--- a/osdep/timer-lx.c
+++ b/osdep/timer-lx.c
@@ -29,7 +29,7 @@ int usec_sleep(int usec_delay)
}
// Returns current time in microseconds
-unsigned int GetTimer(){
+unsigned int GetTimer(void){
struct timeval tv;
struct timezone tz;
// float s;
@@ -39,7 +39,7 @@ unsigned int GetTimer(){
}
// Returns current time in milliseconds
-unsigned int GetTimerMS(){
+unsigned int GetTimerMS(void){
struct timeval tv;
struct timezone tz;
// float s;
@@ -51,7 +51,7 @@ unsigned int GetTimerMS(){
static unsigned int RelativeTime=0;
// Returns time spent between now and last call in seconds
-float GetRelativeTime(){
+float GetRelativeTime(void){
unsigned int t,r;
t=GetTimer();
// t*=16;printf("time=%ud\n",t);
@@ -61,7 +61,7 @@ unsigned int t,r;
}
// Initialize timer, must be called at least once at start
-void InitTimer(){
+void InitTimer(void){
GetRelativeTime();
}