aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech A. Koszek <wkoszek@laptop.freebsd.czest.pl>2010-01-31 18:39:37 +0000
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-02-01 13:20:27 +0100
commit49b1d4664027ec29de5648f1660557f78390535e (patch)
tree361c35e7309071e9bf8759e7ff5158c68dd5ce99
parente96ddd311e4c126c0b0ce88571dcd1a07d0f600a (diff)
downloadjimtcl-49b1d4664027ec29de5648f1660557f78390535e.zip
jimtcl-49b1d4664027ec29de5648f1660557f78390535e.tar.gz
jimtcl-49b1d4664027ec29de5648f1660557f78390535e.tar.bz2
stdint.h is necessary on GNU/Linux systems.
-rw-r--r--jim.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/jim.c b/jim.c
index a596dbc..cd9bc29 100644
--- a/jim.c
+++ b/jim.c
@@ -64,12 +64,13 @@ typedef CYG_ADDRWORD uintptr_t;
#include <assert.h>
#include <errno.h>
#include <time.h>
-#else
+#else /* __ECOS */
#include <sys/param.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
+#include <stdint.h>
#include <string.h>
#include <unistd.h>