diff options
author | Chuck <chun.hong.yoon@desy.de> | 2014-06-12 16:08:55 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-06-13 11:01:26 +0200 |
commit | 40d6969c7a05fe13c3883443d1c9feba6fab30d1 (patch) | |
tree | 23ee8a7247612d7860030a909bc4e1e33ba0c1f3 /libcrystfel/src/reax.h | |
parent | 73629ee82c643769ddff3caa437f9e842f353b23 (diff) |
Add extern "C" for C++ compatibility
Diffstat (limited to 'libcrystfel/src/reax.h')
-rw-r--r-- | libcrystfel/src/reax.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libcrystfel/src/reax.h b/libcrystfel/src/reax.h index 4720709e..b5c6d058 100644 --- a/libcrystfel/src/reax.h +++ b/libcrystfel/src/reax.h @@ -38,6 +38,10 @@ #include "beam-parameters.h" #include "detector.h" +#ifdef __cplusplus +extern "C" { +#endif + #ifdef HAVE_FFTW extern IndexingPrivate *reax_prepare(IndexingMethod *indm, UnitCell *cell, @@ -65,7 +69,10 @@ static int reax_index(IndexingPrivate *pp, struct image *image) { } - #endif /* HAVE_FFTW */ +#ifdef __cplusplus +} +#endif + #endif /* REAX_H */ |