~ubuntu-branches/ubuntu/trusty/mcpp/trusty-proposed

« back to all changes in this revision

Viewing changes to src/eval.c

  • Committer: Bazaar Package Importer
  • Author(s): Kiyoshi Matsui
  • Date: 2010-02-10 10:15:10 UTC
  • mfrom: (1.1.5 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100210101510-b0mkayg62qzctj6g
Tags: 2.7.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
#define S_PDOUBLE   (sizeof (double *))
197
197
#define S_PFPTR     (sizeof (int (*)()))
198
198
#if HAVE_LONG_LONG
199
 
#if (HOST_COMPILER == BORLANDC)
 
199
#if (HOST_COMPILER == BORLANDC) \
200
200
        || (HOST_COMPILER == MSC && defined(_MSC_VER) && (_MSC_VER < 1300))
201
201
#define S_LLINT     (sizeof (__int64))
202
202
#define S_PLLINT    (sizeof (__int64 *))