diff options
Diffstat (limited to 'TOOLS/realcodecs/ra.c')
-rw-r--r-- | TOOLS/realcodecs/ra.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/realcodecs/ra.c b/TOOLS/realcodecs/ra.c index dfedd3d6a6..816a6c1802 100644 --- a/TOOLS/realcodecs/ra.c +++ b/TOOLS/realcodecs/ra.c @@ -55,7 +55,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; @@ -146,7 +146,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -161,11 +161,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; |