Provide values for SIZEOF_OFF_T and SIZEOF_TIME_T.
authorChris Hanson <org/chris-hanson/cph>
Mon, 27 Jun 2011 00:22:35 +0000 (17:22 -0700)
committerChris Hanson <org/chris-hanson/cph>
Mon, 27 Jun 2011 00:22:35 +0000 (17:22 -0700)
src/microcode/ntutl/config.h

index a7ba9b47282c2a479fb9aa66a872ed48ed1365f1..5453a84491d4603349836a78ae3c6994d29383a4 100644 (file)
@@ -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