You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/12/06 10:48:23 UTC

svn commit: r354389 - /httpd/httpd/trunk/os/unix/unixd.h

Author: jorton
Date: Tue Dec  6 01:48:19 2005
New Revision: 354389

URL: http://svn.apache.org/viewcvs?rev=354389&view=rev
Log:
* os/unix/unixd.h: Use extern "C" linkage.

PR: 37357

Modified:
    httpd/httpd/trunk/os/unix/unixd.h

Modified: httpd/httpd/trunk/os/unix/unixd.h
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/os/unix/unixd.h?rev=354389&r1=354388&r2=354389&view=diff
==============================================================================
--- httpd/httpd/trunk/os/unix/unixd.h (original)
+++ httpd/httpd/trunk/os/unix/unixd.h Tue Dec  6 01:48:19 2005
@@ -48,6 +48,10 @@
 #include <sys/ipc.h>
 #endif
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef struct {
     uid_t uid;
     gid_t gid;
@@ -112,6 +116,10 @@
   "Effective user id for this server"), \
 AP_INIT_TAKE1("Group", unixd_set_group, NULL, RSRC_CONF, \
   "Effective group id for this server")
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif
 /** @} */