aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-06-07 11:12:33 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-06-07 12:10:29 +0200
commit24801249d328bdb0cb046bb321dd917249ad36b6 (patch)
tree03842815d654d8fe3790bbf7e5e356f2b116458a /jim.h
parent4d4cfb85178f76ebc83bd11cf4663dff607f51d8 (diff)
downloadjimtcl-24801249d328bdb0cb046bb321dd917249ad36b6.zip
jimtcl-24801249d328bdb0cb046bb321dd917249ad36b6.tar.gz
jimtcl-24801249d328bdb0cb046bb321dd917249ad36b6.tar.bz2
ecos: eCos has 64 bit integers
jim_wide is now 64 bit under eCos. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim.h b/jim.h
index 8baf34d..6d61652 100644
--- a/jim.h
+++ b/jim.h
@@ -87,7 +87,7 @@ extern "C" {
#endif /* _MSC_VER */
/* Long Long type and related issues */
-#if !defined(__ECOS) && defined(HAVE_LONG_LONG_INT)
+#if defined(HAVE_LONG_LONG_INT)
# ifdef _MSC_VER /* MSC compiler */
# define jim_wide _int64
# ifndef LLONG_MAX
@@ -119,7 +119,7 @@ extern "C" {
* LIBC specific fixes
* ---------------------------------------------------------------------------*/
-#if !defined(__ECOS) && defined(HAVE_LONG_LONG_INT)
+#if defined(HAVE_LONG_LONG_INT)
# if defined(_MSC_VER) || defined(__MSVCRT__) || defined(__MINGW32__)
# define JIM_WIDE_MODIFIER "I64d"
# else