summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/handler.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/handler.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/handler.c')
-rw-r--r--cpukit/httpd/handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/httpd/handler.c b/cpukit/httpd/handler.c
index dbbe4148d5..4f88814b5a 100644
--- a/cpukit/httpd/handler.c
+++ b/cpukit/httpd/handler.c
@@ -37,7 +37,7 @@ static char_t *websCondenseMultipleChars(char_t *strToCondense, char_t cCondense
* Initialize the URL handler module
*/
-int websUrlHandlerOpen()
+int websUrlHandlerOpen(void)
{
if (++urlHandlerOpenCount == 1) {
websAspOpen();
@@ -52,7 +52,7 @@ int websUrlHandlerOpen()
* Close the URL handler module
*/
-void websUrlHandlerClose()
+void websUrlHandlerClose(void)
{
websUrlHandlerType *sp;