aboutsummaryrefslogtreecommitdiffstats
path: root/include/threads.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-05-29 04:22:30 -0700
committerChris Robinson <[email protected]>2014-05-29 04:22:30 -0700
commit1d45c439b83565699a1fc220dc7f34c9ceb11a7e (patch)
tree2a1e92e023d270a30da1dc1b06b3bdb205fe6462 /include/threads.h
parent73614f228eda86e9dc074540989a11a4fd7fb9e9 (diff)
Add extern "C" to common headers.
Diffstat (limited to 'include/threads.h')
-rw-r--r--include/threads.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/threads.h b/include/threads.h
index 4a974b53..cde4b91f 100644
--- a/include/threads.h
+++ b/include/threads.h
@@ -3,6 +3,9 @@
#include <time.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
enum {
althrd_success = 0,
@@ -227,4 +230,8 @@ int altimespec_get(struct timespec *ts, int base);
void al_nssleep(time_t sec, long nsec);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* AL_THREADS_H */