From 257b238736a8ad7c4be12e434003170be66b2169 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 30 Jul 2008 09:59:26 +0000 Subject: Add missing prototypes. --- cpukit/httpd/webs.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cpukit/httpd/webs.c') diff --git a/cpukit/httpd/webs.c b/cpukit/httpd/webs.c index 4465a72afe..94e0091a77 100644 --- a/cpukit/httpd/webs.c +++ b/cpukit/httpd/webs.c @@ -1987,7 +1987,7 @@ void websFree(webs_t wp) * Return the server address */ -char_t *websGetHost() +char_t *websGetHost(void) { return websHost; } @@ -1997,7 +1997,7 @@ char_t *websGetHost() * Return the the url to access the server. (ip address) */ -char_t *websGetIpaddrUrl() +char_t *websGetIpaddrUrl(void) { return websIpaddrUrl; } @@ -2007,7 +2007,7 @@ char_t *websGetIpaddrUrl() * Return the server address */ -char_t *websGetHostUrl() +char_t *websGetHostUrl(void) { return websHostUrl; } @@ -2017,7 +2017,7 @@ char_t *websGetHostUrl() * Return the listen port */ -int websGetPort() +int websGetPort(void) { return websPort; } -- cgit v1.2.3