Merge branch 'master' into pygromacs
[alexxy/gromacs.git] / src / gromacs / gmxana / nrama.cpp
index 04bfb5ba9a06d72dfd8e773a16f42c7840108f14..cc1cf7b0625432d3b12b585e6eb5e999150bdee7 100644 (file)
@@ -39,6 +39,7 @@
 #include "nrama.h"
 
 #include <cstdlib>
+#include <cstring>
 
 #include "gromacs/listed-forces/bonded.h"
 #include "gromacs/pbcutil/rmpbc.h"
@@ -112,7 +113,7 @@ static int find_atom(const char *find, char ***names, int start, int nr)
 
     for (i = start; (i < nr); i++)
     {
-        if (strcmp(find, *names[i]) == 0)
+        if (std::strcmp(find, *names[i]) == 0)
         {
             return i;
         }