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/tls.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/tls.h') diff --git a/lib/tls.h b/lib/tls.h index 7e10a46..5dcbc47 100644 --- a/lib/tls.h +++ b/lib/tls.h @@ -1 +1,11 @@ +/* See the file COPYING for licensing information. */ + +#if defined (__cplusplus) +extern "C" { +#endif + int rs_tls_init (struct rs_connection *conn); + +#if defined (__cplusplus) +} +#endif -- cgit v1.1