diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-01-16 21:09:33 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:11 +0100 |
commit | 0fbd26c1b9f998fba172d14487e2b26d10d13b81 (patch) | |
tree | 9aa131cf5f305412747732b13e60566ea920cc5f | |
parent | 50e60fde988840d583d13075e3883467098c7cb0 (diff) |
Don't duplicate symbols with GSL fudge
-rw-r--r-- | src/cell.c | 2 | ||||
-rw-r--r-- | src/filters.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -920,7 +920,7 @@ UnitCell *load_cell_from_pdb(const char *filename) #ifdef GSL_FUDGE /* Force the linker to bring in CBLAS to make GSL happy */ -void fudge_gslcblas() +void cell_fudge_gslcblas() { STATUS("%p\n", cblas_sgemm); } diff --git a/src/filters.c b/src/filters.c index ef6011d9..c4e409df 100644 --- a/src/filters.c +++ b/src/filters.c @@ -123,7 +123,7 @@ void filter_noise(struct image *image, float *old) #ifdef GSL_FUDGE /* Force the linker to bring in CBLAS to make GSL happy */ -void fudge_gslcblas() +void filters_fudge_gslcblas() { STATUS("%p\n", cblas_sgemm); } |