diff options
author | Thomas White <taw@physics.org> | 2018-06-18 15:06:25 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-06-18 15:06:25 +0200 |
commit | 559fea891a8657470fbe629a123a3467d1191a53 (patch) | |
tree | a4e5274684ed55051b5a4ce27eb17fbe1842049a /libcrystfel/src | |
parent | e1b687e748631d434be2af0f61b2f150f3595ba0 (diff) |
Add extern
Diffstat (limited to 'libcrystfel/src')
-rw-r--r-- | libcrystfel/src/xgandalf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcrystfel/src/xgandalf.h b/libcrystfel/src/xgandalf.h index 3e1f0b2c..51660bb0 100644 --- a/libcrystfel/src/xgandalf.h +++ b/libcrystfel/src/xgandalf.h @@ -24,13 +24,13 @@ struct xgandalf_options { #include <stddef.h> #include "index.h" -int run_xgandalf(struct image *image, void *ipriv); +extern int run_xgandalf(struct image *image, void *ipriv); -void *xgandalf_prepare(IndexingMethod *indm, UnitCell *cell, - struct xgandalf_options *xgandalf_opts); +extern void *xgandalf_prepare(IndexingMethod *indm, UnitCell *cell, + struct xgandalf_options *xgandalf_opts); -void xgandalf_cleanup(void *pp); +extern void xgandalf_cleanup(void *pp); +extern const char *xgandalf_probe(UnitCell *cell); -const char *xgandalf_probe(UnitCell *cell); #endif /* LIBCRYSTFEL_SRC_XGANDALF_H */ |