diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-24 18:34:27 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-24 18:34:27 +0000 |
commit | 089ffa160aae6954f5e6f2fe0d71bd86729e40c8 (patch) | |
tree | 9afcc82790f3e82cc2341ca8b78a31a5ac2cb3e5 /uconfig.h | |
parent | bcdb689b03b8acb5fc82d7d93ba3efa5babb480a (diff) | |
download | perl-089ffa160aae6954f5e6f2fe0d71bd86729e40c8.tar.gz |
microperl update; boldly assume time() and time_t
(since we assume ANSI and i_time, anyway).
p4raw-id: //depot/perl@16143
Diffstat (limited to 'uconfig.h')
-rw-r--r-- | uconfig.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1024,7 +1024,7 @@ /* BYTEORDER: * This symbol holds the hexadecimal constant defined in byteorder, - * i.e. 0x1234 or 0x4321, etc... + * in a UV, i.e. 0x1234 or 0x4321 or 0x12345678, etc... * If the compiler supports cross-compiling or multiple-architecture * binaries (eg. on NeXT systems), use compiler-defined macros to * determine the byte order. @@ -2480,12 +2480,16 @@ */ /*#define HAS_TELLDIR_PROTO / **/ +/* HAS_TIME: + * This symbol, if defined, indicates that the time() routine exists. + */ /* Time_t: * This symbol holds the type returned by time(). It can be long, * or time_t on BSD sites (in which case <sys/types.h> should be * included). */ -#define Time_t int /* Time type */ +#define HAS_TIME /**/ +#define Time_t time_t /* Time type */ /* HAS_TIMES: * This symbol, if defined, indicates that the times() routine exists. |