Branch: Tag:

2003-02-12

2003-02-12 00:02:28 by Martin Stjernholm <mast@lysator.liu.se>

long long isn't always a valid type.

Rev: src/configure.in:1.689

1: - AC_REVISION("$Id: configure.in,v 1.688 2003/02/11 23:57:02 mast Exp $") + AC_REVISION("$Id: configure.in,v 1.689 2003/02/12 00:02:28 mast Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
5824:    return 4;    }    if (work_time < (CPU_TIME_TICKS / 10)) { -  fprintf (res, "unknown (get_cpu_time doesn't work - loop took only %lld)", -  (long long) work_time); +  fprintf (res, "unknown (get_cpu_time doesn't work - loop took only %ld ms)", +  (long) (work_time / (CPU_TIME_TICKS / 1000)));    fclose (res);    return 5;    }