Compile nonbonded kernels as C++
[alexxy/gromacs.git] / src / gromacs / gmxana / dens_filter.h
index 396a378034f49f0f73384cd58d7de2d6163ccfca..5de74c32fd5050b5fb9d4ddcad9700a07e3ccf61 100644 (file)
 #include "gromacs/utility/basedefinitions.h"
 #include "gromacs/utility/real.h"
 
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
 extern gmx_bool convolution(int dataSize, real* in, int kernelSize,
                             const real* kernel);
 extern gmx_bool periodic_convolution(int dsize, real *in, int ksize,
                                      const real* kernel);
 extern void gausskernel(real *out, int size, real var);
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif