summaryrefslogtreecommitdiffstats
path: root/TOOLS/realcodecs
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/realcodecs')
-rw-r--r--TOOLS/realcodecs/14_4.c8
-rw-r--r--TOOLS/realcodecs/28_8.c8
-rw-r--r--TOOLS/realcodecs/cook.c8
-rw-r--r--TOOLS/realcodecs/drv2.c8
-rw-r--r--TOOLS/realcodecs/drv3.c8
-rw-r--r--TOOLS/realcodecs/drv4.c8
-rw-r--r--TOOLS/realcodecs/ra.c8
-rw-r--r--TOOLS/realcodecs/rv30.c8
-rw-r--r--TOOLS/realcodecs/sipr.c8
9 files changed, 36 insertions, 36 deletions
diff --git a/TOOLS/realcodecs/14_4.c b/TOOLS/realcodecs/14_4.c
index 61e59c7c58..6def97af46 100644
--- a/TOOLS/realcodecs/14_4.c
+++ b/TOOLS/realcodecs/14_4.c
@@ -44,7 +44,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;
@@ -100,7 +100,7 @@ void loadSyms() {
}
}
-void closeDll() {
+void closeDll(void) {
if (handle) {
b_dlOpened=0;
dlclose(handle);
@@ -115,11 +115,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;
diff --git a/TOOLS/realcodecs/28_8.c b/TOOLS/realcodecs/28_8.c
index 5c1735cde3..6634c4afde 100644
--- a/TOOLS/realcodecs/28_8.c
+++ b/TOOLS/realcodecs/28_8.c
@@ -44,7 +44,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;
@@ -100,7 +100,7 @@ void loadSyms() {
}
}
-void closeDll() {
+void closeDll(void) {
if (handle) {
b_dlOpened=0;
dlclose(handle);
@@ -115,11 +115,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;
diff --git a/TOOLS/realcodecs/cook.c b/TOOLS/realcodecs/cook.c
index 5b0f54b913..8a8310d72e 100644
--- a/TOOLS/realcodecs/cook.c
+++ b/TOOLS/realcodecs/cook.c
@@ -56,7 +56,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;
@@ -147,7 +147,7 @@ void loadSyms() {
}
}
-void closeDll() {
+void closeDll(void) {
if (handle) {
b_dlOpened=0;
dlclose(handle);
@@ -162,11 +162,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;
diff --git a/TOOLS/realcodecs/drv2.c b/TOOLS/realcodecs/drv2.c
index 8c09e25784..c4de76f1f2 100644
--- a/TOOLS/realcodecs/drv2.c
+++ b/TOOLS/realcodecs/drv2.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;
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;
diff --git a/TOOLS/realcodecs/drv4.c b/TOOLS/realcodecs/drv4.c
index 231ba2b3e7..63eab69a21 100644
--- a/TOOLS/realcodecs/drv4.c
+++ b/TOOLS/realcodecs/drv4.c
@@ -50,7 +50,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;
@@ -96,7 +96,7 @@ void loadSyms() {
}
}
-void closeDll() {
+void closeDll(void) {
if (handle) {
b_dlOpened=0;
dlclose(handle);
@@ -111,11 +111,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;
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;
diff --git a/TOOLS/realcodecs/rv30.c b/TOOLS/realcodecs/rv30.c
index d1a3278b80..a74f2e22ab 100644
--- a/TOOLS/realcodecs/rv30.c
+++ b/TOOLS/realcodecs/rv30.c
@@ -58,7 +58,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;
@@ -175,7 +175,7 @@ void loadSyms() {
}
}
-void closeDll() {
+void closeDll(void) {
if (handle) {
b_dlOpened=0;
dlclose(handle);
@@ -190,11 +190,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;
diff --git a/TOOLS/realcodecs/sipr.c b/TOOLS/realcodecs/sipr.c
index ee9990d399..d14996aa2e 100644
--- a/TOOLS/realcodecs/sipr.c
+++ b/TOOLS/realcodecs/sipr.c
@@ -73,7 +73,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;
@@ -169,7 +169,7 @@ void loadSyms() {
}
}
-void closeDll() {
+void closeDll(void) {
if (handle) {
b_dlOpened=0;
dlclose(handle);
@@ -184,11 +184,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;