Remove remaining usage of SIZEOF*
[alexxy/gromacs.git] / src / gromacs / gmxana / gmx_analyze.c
index b7f7fe3ccd4f7d14b23e077582324c6f2850151a..503a7d3baeca6a60f9028ad3e629ebb0ccb72276 100644 (file)
@@ -243,11 +243,7 @@ void histogram(const char *distfile, real binwidth, int n, int nset, real **val,
     int            i, s;
     double         min, max;
     int            nbin;
-#if (defined SIZEOF_LONG_LONG_INT) && (SIZEOF_LONG_LONG_INT >= 8)
-    long long int *histo;
-#else
-    double        *histo;
-#endif
+    gmx_int64_t   *histo;
 
     min = val[0][0];
     max = val[0][0];