diff options
Diffstat (limited to 'TOOLS/realcodecs/drv3.c')
-rw-r--r-- | TOOLS/realcodecs/drv3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/realcodecs/drv3.c b/TOOLS/realcodecs/drv3.c index 889d5f724e..5d03a023d5 100644 --- a/TOOLS/realcodecs/drv3.c +++ b/TOOLS/realcodecs/drv3.c @@ -48,7 +48,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -124,7 +124,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -139,11 +139,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; |