From: Chris Hanson Date: Mon, 27 Jun 2011 00:22:35 +0000 (-0700) Subject: Provide values for SIZEOF_OFF_T and SIZEOF_TIME_T. X-Git-Tag: release-9.1.0~13 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=9c521e13199697bc5528642bad09b43bdedd5567;p=mit-scheme.git Provide values for SIZEOF_OFF_T and SIZEOF_TIME_T. --- diff --git a/src/microcode/ntutl/config.h b/src/microcode/ntutl/config.h index a7ba9b472..5453a8449 100644 --- a/src/microcode/ntutl/config.h +++ b/src/microcode/ntutl/config.h @@ -223,12 +223,18 @@ typedef unsigned char cc_t; /* The size of `intptr_t', as computed by sizeof. */ #define SIZEOF_INTPTR_T 4 +/* The size of `off_t', as computed by sizeof. */ +#define SIZEOF_OFF_T 4 + /* The size of `long', as computed by sizeof. */ #define SIZEOF_LONG 4 /* The size of `short', as computed by sizeof. */ #define SIZEOF_SHORT 2 +/* The size of `time_t', as computed by sizeof. */ +#define SIZEOF_TIME_T 4 + /* The size of `uintmax_t', as computed by sizeof. */ #define SIZEOF_UINTMAX_T 8