mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
ssh: fix SIZEOF_TIME_T #define on i386
Reported by: imp Reviewed by: imp MFC after: 3 days Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D38443
This commit is contained in:
parent
6a70e0b4cd
commit
1aa9a35f63
@ -1941,7 +1941,11 @@
|
||||
#define SIZEOF_SHORT_INT 2
|
||||
|
||||
/* The size of `time_t', as computed by sizeof. */
|
||||
#ifdef __i386__
|
||||
#define SIZEOF_TIME_T 4
|
||||
#else
|
||||
#define SIZEOF_TIME_T 8
|
||||
#endif
|
||||
|
||||
/* Define as const if snprintf() can declare const char *fmt */
|
||||
#define SNPRINTF_CONST const
|
||||
|
Loading…
Reference in New Issue
Block a user