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/include/radsec/request-impl.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/include/radsec/request-impl.h') diff --git a/lib/include/radsec/request-impl.h b/lib/include/radsec/request-impl.h index 339dfea..02b7713 100644 --- a/lib/include/radsec/request-impl.h +++ b/lib/include/radsec/request-impl.h @@ -1,5 +1,9 @@ /* See the file COPYING for licensing information. */ +#if defined (__cplusplus) +extern "C" { +#endif + struct rs_request { struct rs_connection *conn; @@ -8,3 +12,7 @@ struct rs_request struct rs_packet *resp; struct rs_conn_callbacks saved_cb; }; + +#if defined (__cplusplus) +} +#endif -- cgit v1.1