Compile nonbonded kernels as C++
[alexxy/gromacs.git] / src / gromacs / linearalgebra / matrix.h
index 1d79494dac162286d491578007ce1f3af34f6b82..07ba1d92c9f16b9fd74afa6c827321d1ce9ce60d 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2008, The GROMACS development team.
- * Copyright (c) 2012,2013, by the GROMACS development team, led by
+ * Copyright (c) 2012,2013,2018, 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.
 
 #include <stdio.h>
 
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
 double **alloc_matrix(int n, int m);
 
 void free_matrix(double **a);
@@ -64,8 +59,4 @@ double multi_regression(FILE *fp, int ny, double *y,
  * If fp is not NULL debug information will be written to it.
  */
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif