Commit 973ec0ae authored by Joe Orton's avatar Joe Orton
Browse files

* os/unix/unixd.h: Use extern "C" linkage.

PR: 37357


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@354389 13f79535-47bb-0310-9956-ffa450edef68
parent ab7be995
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -48,6 +48,10 @@
#include <sys/ipc.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
    uid_t uid;
    gid_t gid;
@@ -113,5 +117,9 @@ AP_INIT_TAKE1("User", unixd_set_user, NULL, RSRC_CONF, \
AP_INIT_TAKE1("Group", unixd_set_group, NULL, RSRC_CONF, \
  "Effective group id for this server")

#ifdef __cplusplus
}
#endif

#endif
/** @} */