diff options
author | Linus Nordberg <linus@nordu.net> | 2010-11-11 14:57:05 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-11-11 14:57:05 +0100 |
commit | 61010c7b868bb7ceef4a04af23e2b139163dd431 (patch) | |
tree | 425592a98e6c5380f298a0692ff534cbc8117b07 /lib/rsp_list.h | |
parent | 8f48dfbad11382b92fc9abaa6fa41756ec087194 (diff) |
Add extern "C" guards to all header files.
Diffstat (limited to 'lib/rsp_list.h')
-rw-r--r-- | lib/rsp_list.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/rsp_list.h b/lib/rsp_list.h index 80c0128..83e8cb5 100644 --- a/lib/rsp_list.h +++ b/lib/rsp_list.h @@ -12,6 +12,10 @@ #include <stdint.h> #endif +#if defined (__cplusplus) +extern "C" { +#endif + struct list_node { struct list_node *next; void *data; @@ -46,6 +50,10 @@ struct list_node *list_next(struct list_node *node); /* returns number of nodes */ uint32_t list_count(struct list *list); +#if defined (__cplusplus) +} +#endif + /* Local Variables: */ /* c-file-style: "stroustrup" */ /* End: */ |