Sync with official Jim Tcl repository.

This commit is contained in:
oyvind 2009-10-19 15:16:42 +02:00
parent 89a8a37998
commit 557d1b6490
3 changed files with 6 additions and 4 deletions

View File

@ -52,8 +52,7 @@
#define __JIM_EVENTLOOP_CORE__
#ifdef __ECOS
#include <pkgconf/jimtcl.h>
#endif
#ifdef __ECOS
#include <sys/time.h>
#include <cyg/jimtcl/jim.h>
#include <cyg/jimtcl/jim-eventloop.h>
#else

View File

@ -53,6 +53,9 @@
#include <pkgconf/jimtcl.h>
#include <stdio.h>
#include <stdlib.h>
typedef CYG_ADDRWORD intptr_t;
#include <string.h>
#include <stdarg.h>
#include <ctype.h>

View File

@ -87,7 +87,7 @@ extern "C" {
#endif /* _MSC_VER */
/* Long Long type and related issues */
#ifdef HAVE_LONG_LONG_INT
#if !defined(__ECOS) && 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
* ---------------------------------------------------------------------------*/
#ifdef HAVE_LONG_LONG_INT
#if !defined(__ECOS) && defined(HAVE_LONG_LONG_INT)
# if defined(_MSC_VER) || defined(__MSVCRT__) || defined(__MINGW32__)
# define JIM_WIDE_MODIFIER "I64d"
# else