summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/webs.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/webs.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/webs.c')
-rw-r--r--cpukit/httpd/webs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/httpd/webs.c b/cpukit/httpd/webs.c
index 94e0091a77..938710cf55 100644
--- a/cpukit/httpd/webs.c
+++ b/cpukit/httpd/webs.c
@@ -140,7 +140,7 @@ int websOpenServer(int port, int retries)
* Close the GoAhead WebServer
*/
-void websCloseServer()
+void websCloseServer(void)
{
webs_t wp;
int wid;
@@ -236,7 +236,7 @@ int websOpenListen(int port, int retries)
* Close webs listen port
*/
-void websCloseListen()
+void websCloseListen(void)
{
if (websListenSock >= 0) {
socketCloseConnection(websListenSock);
@@ -2364,7 +2364,7 @@ void websSetRealm(char_t *realmName)
* Return the realm name (used for authorization)
*/
-char_t *websGetRealm()
+char_t *websGetRealm(void)
{
return websRealm;
}