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_hash.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/rsp_hash.h') diff --git a/lib/rsp_hash.h b/lib/rsp_hash.h index 48f54a3..10968b1 100644 --- a/lib/rsp_hash.h +++ b/lib/rsp_hash.h @@ -10,6 +10,10 @@ #include #endif +#if defined (__cplusplus) +extern "C" { +#endif + struct hash { struct list *hashlist; pthread_mutex_t mutex; @@ -43,6 +47,10 @@ struct hash_entry *hash_first(struct hash *hash); /* returns the next entry after the argument */ struct hash_entry *hash_next(struct hash_entry *entry); +#if defined (__cplusplus) +} +#endif + /* Local Variables: */ /* c-file-style: "stroustrup" */ /* End: */ -- cgit v1.1