mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
311 B
13 lines
311 B
9 years ago
|
#define DUK_USE_DATE_NOW_TIME
|
||
|
#define DUK_USE_DATE_TZO_GMTIME
|
||
|
/* no parsing (not an error) */
|
||
|
#define DUK_USE_DATE_FMT_STRFTIME
|
||
|
#include <time.h>
|
||
|
|
||
|
#define DUK_USE_OS_STRING "tos"
|
||
9 years ago
|
|
||
|
/* TOS on M68K is always big endian. */
|
||
|
#if !defined(DUK_USE_BYTEORDER) && defined(DUK_F_M68K)
|
||
|
#define DUK_USE_BYTEORDER 3
|
||
|
#endif
|