1998-07-28
1998-07-28 23:01:52 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
-
2d04c85090ed3f05f79786a6bed6a107cf7afffe
(5 lines)
(+3/-2)
[
Show
| Annotate
]
Branch: 7.9
bugfix in gmtime
Rev: src/builtin_functions.c:1.120
4:
||| See the files COPYING and DISCLAIMER for more information.
\*/
#include "global.h"
- RCSID("$Id: builtin_functions.c,v 1.119 1998/07/26 10:28:41 hubbe Exp $");
+ RCSID("$Id: builtin_functions.c,v 1.120 1998/07/28 23:01:52 hubbe Exp $");
#include "interpret.h"
#include "svalue.h"
#include "pike_macros.h"
3064: Inside #if defined(HAVE_LOCALTIME)
#ifdef HAVE_LOCALTIME
add_efun("localtime",f_localtime,"function(int:mapping(string:int))",OPT_EXTERNAL_DEPEND);
#endif
- #ifdef HAVE_LOCALTIME
+ #ifdef HAVE_GMTIME
add_efun("gmtime",f_gmtime,"function(int:mapping(string:int))",OPT_EXTERNAL_DEPEND);
#endif