From 61010c7b868bb7ceef4a04af23e2b139163dd431 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Thu, 11 Nov 2010 14:57:05 +0100 Subject: Add extern "C" guards to all header files. --- lib/rsp_tlscommon.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/rsp_tlscommon.h') diff --git a/lib/rsp_tlscommon.h b/lib/rsp_tlscommon.h index d7e0930..6819cd0 100644 --- a/lib/rsp_tlscommon.h +++ b/lib/rsp_tlscommon.h @@ -8,6 +8,10 @@ #include +#if defined (__cplusplus) +extern "C" { +#endif + struct tls { char *name; char *cacertfile; @@ -35,6 +39,10 @@ int conftls_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *v int addmatchcertattr(struct clsrvconf *conf); #endif +#if defined (__cplusplus) +} +#endif + /* Local Variables: */ /* c-file-style: "stroustrup" */ /* End: */ -- cgit v1.1