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

@@ -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