From 9c521e13199697bc5528642bad09b43bdedd5567 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 26 Jun 2011 17:22:35 -0700 Subject: [PATCH] Provide values for SIZEOF_OFF_T and SIZEOF_TIME_T. --- src/microcode/ntutl/config.h | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.25.1