Merge branch 'master' into pygromacs
[alexxy/gromacs.git] / src / gromacs / gmxana / binsearch.h
index 85bb9ec93cba7e3ff56188966e59a1b9726bccef..24cf8f465bf1f7f295cb8c7ab8258172f04ad925 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2010,2011,2013,2014, by the GROMACS development team, led by
+ * Copyright (c) 2010,2011,2013,2014,2015, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -42,17 +42,17 @@ extern "C"
 {
 #endif
 
-extern void rangeArray(int *ar, int size);
+void rangeArray(int *ar, int size);
 
-extern void insertionSort(real *ar, int *perm, int start, int end, int direction);
+void insertionSort(real *ar, int *perm, int start, int end, int direction);
 
-extern int BinarySearch(real *ar, int start, int end, real key, int direction);
+int BinarySearch(real *ar, int start, int end, real key, int direction);
 
-extern int start_binsearch(real *array, int *perm, int low, int high,
-                           real key, int direction);
+int start_binsearch(real *array, int *perm, int low, int high,
+                    real key, int direction);
 
-extern int LinearSearch(double *array, int startindx, int stopindx,
-                        double key, int *count, int direction);
+int LinearSearch(double *array, int startindx, int stopindx,
+                 double key, int *count, int direction);
 
 #ifdef __cplusplus
 }