1997-11-02
1997-11-02 22:17:37 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
65d4ed4fb4a3a0a9bf9b18d9f71a1e5eac86d569
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 7.9
Bugfix.
Rev: src/builtin_functions.c:1.54
4:
||| See the files COPYING and DISCLAIMER for more information.
\*/
#include "global.h"
- RCSID("$Id: builtin_functions.c,v 1.53 1997/11/02 19:29:34 grubba Exp $");
+ RCSID("$Id: builtin_functions.c,v 1.54 1997/11/02 22:17:37 grubba Exp $");
#include "interpret.h"
#include "svalue.h"
#include "pike_macros.h"
1733: Inside #if defined(HAVE_GETHRVTIME)
void f_gethrvtime(INT32 args)
{
pop_n_elems(args);
- push_int((INT32)(gethrvtime())/1000));
+ push_int((INT32)(gethrvtime()/1000));
}
void f_gethrtime(INT32 args)
{
pop_n_elems(args);
- push_int((INT32)(gethrtime())/1000));
+ push_int((INT32)(gethrtime()/1000));
}
#endif /* __STDC__ == 0 && !defined(_NO_LONGLONG) */
#endif /* HAVE_GETHRVTIME */