summaryrefslogtreecommitdiff
path: root/lib/include/radsec/radsec-impl.h
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2010-11-11 14:57:05 +0100
committerLinus Nordberg <linus@nordu.net>2010-11-11 14:57:05 +0100
commit61010c7b868bb7ceef4a04af23e2b139163dd431 (patch)
tree425592a98e6c5380f298a0692ff534cbc8117b07 /lib/include/radsec/radsec-impl.h
parent8f48dfbad11382b92fc9abaa6fa41756ec087194 (diff)
Add extern "C" guards to all header files.
Diffstat (limited to 'lib/include/radsec/radsec-impl.h')
-rw-r--r--lib/include/radsec/radsec-impl.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/include/radsec/radsec-impl.h b/lib/include/radsec/radsec-impl.h
index 2b3d878..14801ab 100644
--- a/lib/include/radsec/radsec-impl.h
+++ b/lib/include/radsec/radsec-impl.h
@@ -19,6 +19,10 @@ enum rs_cred_type {
};
typedef unsigned int rs_cred_type_t;
+#if defined (__cplusplus)
+extern "C" {
+#endif
+
struct rs_packet;
struct rs_credentials {
@@ -108,6 +112,10 @@ int _rs_err_conn_push_err(struct rs_connection *conn,
struct rs_error *err);
+#if defined (__cplusplus)
+}
+#endif
+
/* Convenience macros. */
#define rs_calloc(h, nmemb, size) \
(h->alloc_scheme.calloc ? h->alloc_scheme.calloc : calloc)(nmemb, size)