projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec65ce7
)
Provide values for SIZEOF_OFF_T and SIZEOF_TIME_T.
author
Chris Hanson
<org/chris-hanson/cph>
Mon, 27 Jun 2011 00:22:35 +0000
(17:22 -0700)
committer
Chris Hanson
<org/chris-hanson/cph>
Mon, 27 Jun 2011 00:22:35 +0000
(17:22 -0700)
src/microcode/ntutl/config.h
patch
|
blob
|
history
diff --git
a/src/microcode/ntutl/config.h
b/src/microcode/ntutl/config.h
index a7ba9b47282c2a479fb9aa66a872ed48ed1365f1..5453a84491d4603349836a78ae3c6994d29383a4 100644
(file)
--- 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