1996-02-21 02:49:46 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1996-02-21 02:49:46 -08:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
1999-12-09 10:53:52 -08:00
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1996-02-21 02:49:46 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-02-11 07:47:09 -08:00
|
|
|
/* Machine configuration, Intel x86 processors, Win32, Visual C++ compiler */
|
1996-02-21 02:49:46 -08:00
|
|
|
|
1996-07-01 05:43:28 -07:00
|
|
|
#undef ARCH_SIXTYFOUR
|
|
|
|
#undef ARCH_BIG_ENDIAN
|
|
|
|
#undef ARCH_ALIGN_DOUBLE
|
1998-08-14 02:57:43 -07:00
|
|
|
#define SIZEOF_INT 4
|
|
|
|
#define SIZEOF_LONG 4
|
|
|
|
#define SIZEOF_SHORT 2
|
2000-02-11 07:47:09 -08:00
|
|
|
#define ARCH_INT64_TYPE __int64
|
|
|
|
#define ARCH_UINT64_TYPE unsigned __int64
|
|
|
|
#define ARCH_INT64_PRINTF_FORMAT "I64"
|
1996-02-21 02:49:46 -08:00
|
|
|
|