summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/uemf.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 07:02:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 07:02:00 +0000
commit029c374c9c2617627b90b7585b6722113cd760a4 (patch)
tree64e4e41c2c61990e65e413e912b324a6eda3ea58 /cpukit/httpd/uemf.c
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-029c374c9c2617627b90b7585b6722113cd760a4.tar.bz2
Stop using old-style function definitions.
Diffstat (limited to 'cpukit/httpd/uemf.c')
-rw-r--r--cpukit/httpd/uemf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/httpd/uemf.c b/cpukit/httpd/uemf.c
index 106f8bc4c6..a2c438ac28 100644
--- a/cpukit/httpd/uemf.c
+++ b/cpukit/httpd/uemf.c
@@ -156,7 +156,7 @@ void emfInstSet(int inst)
* Get the instance handle
*/
-int emfInstGet()
+int emfInstGet(void)
{
return emfInst;
}
@@ -271,12 +271,12 @@ char_t *stritoa(int n, char_t *string, int width)
* Stubs
*/
-char_t *basicGetProduct()
+char_t *basicGetProduct(void)
{
return T("uemf");
}
-char_t *basicGetAddress()
+char_t *basicGetAddress(void)
{
return T("localhost");
}