summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/ChangeLog2
-rw-r--r--cpukit/httpd/rtems_webserver.h17
2 files changed, 16 insertions, 3 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index ccc2780d56..77d06f3bcc 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,6 +1,8 @@
2004-12-30 Ralf Corsepius <ralf.corsepius@rtems.org>
* httpd/Makefile.am: Remove -DOS="RTEMS".
+ * httpd/rtems_webserver.h: Add doxygen preamble.
+ Add C++ guards.
2004-12-29 Ralf Corsepius <ralf.corsepius@rtems.org>
diff --git a/cpukit/httpd/rtems_webserver.h b/cpukit/httpd/rtems_webserver.h
index f62790b601..d2e1362865 100644
--- a/cpukit/httpd/rtems_webserver.h
+++ b/cpukit/httpd/rtems_webserver.h
@@ -1,6 +1,17 @@
-/*
- * rtems_webserver.h --
- *
+/**
+ * @file rtems/rtems_webserver.h
*/
+#ifndef _rtems_rtems_webserver_h
+#define _rtems_rtems_webserver_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
int rtems_initialize_webserver();
+
+#ifdef __cplusplus
+}
+#endif
+#endif