compile under sun's cc.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@165 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2001-09-24 18:07:16 +00:00
parent 34010ba45a
commit 2eb822797e
17 changed files with 40 additions and 35 deletions

View File

@@ -18,7 +18,7 @@
* Last rev: December 90 *
* mods: *
* comments: Tag Scheme for machines with 24 bits adresses (m68000) *
* version: $Id: Tags_24bits.h,v 1.4 2001-08-09 14:01:19 vsc Exp $ *
* version: $Id: Tags_24bits.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
/* Version for 24 bit addresses (68000)

View File

@@ -18,7 +18,7 @@
* Last rev: December 90 *
* mods: *
* comments: Original Tag Scheme for machines with 32 bits adresses *
* version: $Id: Tags_32LowTag.h,v 1.4 2001-08-09 14:01:19 vsc Exp $ *
* version: $Id: Tags_32LowTag.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
#define TAG_LOW_BITS_32 1

View File

@@ -18,7 +18,7 @@
* Last rev: December 90 *
* mods: *
* comments: Original Tag Scheme for machines with 32 bits adresses *
* version: $Id: Tags_32Ops.h,v 1.4 2001-08-09 14:01:19 vsc Exp $ *
* version: $Id: Tags_32Ops.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
/*

View File

@@ -18,7 +18,7 @@
* Last rev: December 90 *
* mods: *
* comments: Original Tag Scheme for machines with 32 bits adresses *
* version: $Id: Tags_32bits.h,v 1.4 2001-08-09 14:01:19 vsc Exp $ *
* version: $Id: Tags_32bits.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
/* Original version for 32 bit addresses machines,

View File

@@ -18,7 +18,7 @@
* Last rev: December 90 *
* mods: *
* comments: Original Tag Scheme for machines with 32 bits adresses *
* version: $Id: Tags_64bits.h,v 1.4 2001-08-09 14:01:19 vsc Exp $ *
* version: $Id: Tags_64bits.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
#define TAG_64BITS 1

View File

@@ -17,7 +17,7 @@
* File: TermExt.h *
* mods: *
* comments: Extensions to standard terms for YAP *
* version: $Id: TermExt.h,v 1.4 2001-08-09 14:01:19 vsc Exp $ *
* version: $Id: TermExt.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
#if USE_OFFSETS

View File

@@ -17,7 +17,7 @@
* File: Yap.h.m4 *
* mods: *
* comments: main header file for YAP *
* version: $Id: Yap.h,v 1.4 2001-08-09 14:01:20 vsc Exp $ *
* version: $Id: Yap.h,v 1.5 2001-09-24 18:07:16 vsc Exp $ *
*************************************************************************/
#include "config.h"
@@ -171,7 +171,7 @@
/* */ typedef unsigned long int UInt;
#else
error Yap require integer types of the same size as a pointer
# error Yap require integer types of the same size as a pointer
#endif
#if SIZEOF_SHORT_INT==2
@@ -179,7 +179,7 @@
/* */ typedef unsigned short int UShort;
#else
error Yap requires integer types half the size of a pointer
# error Yap requires integer types half the size of a pointer
#endif
#elif SIZEOF_INT_P==8
@@ -197,7 +197,7 @@
/* */ typedef unsigned long long int UInt;
# else
error Yap requires integer types of the same size as a pointer
# error Yap requires integer types of the same size as a pointer
# endif
# if SIZEOF_SHORT_INT==4
@@ -209,12 +209,12 @@
/* */ typedef short int UShort;
# else
error Yap requires integer types half the size of a pointer
# error Yap requires integer types half the size of a pointer
# endif
#else
error Yap requires pointers of size 4 or 8
# error Yap requires pointers of size 4 or 8
#endif