aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/statistics.h
diff options
context:
space:
mode:
authorChuck <chun.hong.yoon@desy.de>2014-06-12 16:08:55 +0200
committerThomas White <taw@physics.org>2014-06-13 11:01:26 +0200
commit40d6969c7a05fe13c3883443d1c9feba6fab30d1 (patch)
tree23ee8a7247612d7860030a909bc4e1e33ba0c1f3 /libcrystfel/src/statistics.h
parent73629ee82c643769ddff3caa437f9e842f353b23 (diff)
Add extern "C" for C++ compatibility
Diffstat (limited to 'libcrystfel/src/statistics.h')
-rw-r--r--libcrystfel/src/statistics.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libcrystfel/src/statistics.h b/libcrystfel/src/statistics.h
index 52ebc383..17338dad 100644
--- a/libcrystfel/src/statistics.h
+++ b/libcrystfel/src/statistics.h
@@ -33,6 +33,9 @@
#ifndef STATISTICS_H
#define STATISTICS_H
+#ifdef __cplusplus
+extern "C" {
+#endif
#include "reflist.h"
@@ -58,5 +61,8 @@ extern double stat_pearson_i(RefList *list1, RefList *list2);
extern double stat_pearson_f_zero(RefList *list1, RefList *list2);
extern double stat_pearson_f_ignore(RefList *list1, RefList *list2);
+#ifdef __cplusplus
+}
+#endif
#endif /* STATISTICS_H */