pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2003-02-12
2003-02-12 00:02:28 by Martin Stjernholm <mast@lysator.liu.se>
811b8fd4809962832e4f03048ba7c6fb15814702 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
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; }