summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/webs.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-07-30 09:59:26 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-07-30 09:59:26 +0000
commit257b238736a8ad7c4be12e434003170be66b2169 (patch)
treeb868a36fa06e1eb5673439bb5f093d92d66c3d64 /cpukit/httpd/webs.c
parent2008-07-29 Tim Cussins <timcussins@eml.cc> (diff)
downloadrtems-257b238736a8ad7c4be12e434003170be66b2169.tar.bz2
Add missing prototypes.
Diffstat (limited to 'cpukit/httpd/webs.c')
-rw-r--r--cpukit/httpd/webs.c8
1 files changed, 4 insertions, 4 deletions
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;
}