aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2008-04-01 17:14:15 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2008-04-01 17:14:15 +0000
commit5137d5eb582364be1d560614102f6ecaa1508ac7 (patch)
tree563339d5d745fec790f06212824835b4a6189654
parent7809f4f9643c3a78831bd371af545110469f9532 (diff)
Remove redundant library references
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@270 bf6ca9ba-c028-0410-8290-897cf20841d1
-rw-r--r--src/utils.c2
-rw-r--r--src/utils.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c
index 1e82abb..3fe2e23 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -11,9 +11,9 @@
#include <math.h>
#include <gsl/gsl_matrix.h>
+#include <string.h>
#include "utils.h"
-#include "string.h"
/* Return the MOST POSITIVE of two numbers */
unsigned int biggest(signed int a, signed int b) {
diff --git a/src/utils.h b/src/utils.h
index 804f1af..5736739 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -16,7 +16,6 @@
#include <config.h>
#endif
-#include <stdlib.h>
#include <math.h>
#include <gsl/gsl_matrix.h>