Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / utility / txtdump.cpp
index f2aa96d535ae6cf8aae87d6832a2e124bcf025f4..ef1989752b3d8bf95aeb219185e17ab4ec1b6bff 100644 (file)
@@ -164,7 +164,7 @@ void pr_int(FILE *fp, int indent, const char *title, int i)
     fprintf(fp, "%-30s = %d\n", title, i);
 }
 
-void pr_int64(FILE *fp, int indent, const char *title, gmx_int64_t i)
+void pr_int64(FILE *fp, int indent, const char *title, int64_t i)
 {
     char buf[STEPSTRSIZE];