Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / mdlib / mdebin.cpp
index 642a961688d690007ded0e3ce3bfe9cffa6a8aa7..4b7e98650e5fb5cd213457b3a8f3577fd14d03bb 100644 (file)
@@ -1240,7 +1240,7 @@ static void pprint(FILE *log, const char *s, t_mdebin *md)
     fprintf(log, "\n");
 }
 
-void print_ebin_header(FILE *log, gmx_int64_t steps, double time)
+void print_ebin_header(FILE *log, int64_t steps, double time)
 {
     char buf[22];
 
@@ -1253,7 +1253,7 @@ void print_ebin_header(FILE *log, gmx_int64_t steps, double time)
 // both .edr and .log output for both per-time and time-average data.
 void print_ebin(ener_file_t fp_ene, gmx_bool bEne, gmx_bool bDR, gmx_bool bOR,
                 FILE *log,
-                gmx_int64_t step, double time,
+                int64_t step, double time,
                 int mode,
                 t_mdebin *md, t_fcdata *fcd,
                 gmx_groups_t *groups, t_grpopts *opts,