*** empty log message ***

This commit is contained in:
hyung-hwan 2006-04-30 17:35:37 +00:00
parent f73544e769
commit 670a7083d4
4 changed files with 38 additions and 1 deletions

28
ase/conf_dos.h Normal file
View File

@ -0,0 +1,28 @@
/*
* $Id: conf_dos.h,v 1.3 2006-04-30 17:35:37 bacon Exp $
*/
#if !defined(__LARGE__) && !defined(__HUGE__)
#error this library supports the large and the huge memory models only
#endif
#define XP_ENDIAN_LITTLE
#define XP_SIZEOF_CHAR 1
#define XP_SIZEOF_SHORT 2
#define XP_SIZEOF_INT 2
#define XP_SIZEOF_LONG 4
#define XP_SIZEOF_LONG_LONG 0
#define XP_SIZEOF___INT8 0
#define XP_SIZEOF___INT16 0
#define XP_SIZEOF___INT32 0
#define XP_SIZEOF___INT64 0
#define XP_SIZEOF___INT96 0
#define XP_SIZEOF___INT128 0
#define XP_SIZEOF_VOID_P 4
#define XP_SIZEOF_FLOAT 4
#define XP_SIZEOF_DOUBLE 8
#define XP_SIZEOF_LONG_DOUBLE 10 /* turbo c 2.01 */

View File

@ -1,3 +1,6 @@
/*
* $Id: conf_msw.h,v 1.2 2006-04-30 17:35:37 bacon Exp $
*/
/*
Macro Meaning

View File

@ -1,3 +1,7 @@
/*
* $Id: conf_vms.h,v 1.4 2006-04-30 17:35:37 bacon Exp $
*/
/* TODO: please complete the itanium portion */
/* both vax and alpha are in the little endian. */

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h,v 1.44 2006-04-14 15:08:37 bacon Exp $
* $Id: types.h,v 1.45 2006-04-30 17:35:37 bacon Exp $
*/
#ifndef _XP_TYPES_H_
@ -9,6 +9,8 @@
#include <xp/conf_msw.h>
#elif defined(vms) || defined(__vms)
#include <xp/conf_vms.h>
#elif defined(dos) || defined(__dos)
#include <xp/conf_dos.h>
#else
#include <xp/config.h>
#endif