This commit is contained in:
2008-07-22 08:11:04 +00:00
parent cca74dbaf7
commit 6e9876f9c2
4 changed files with 285 additions and 210 deletions

View File

@ -78,6 +78,9 @@
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_H
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
@ -102,6 +105,9 @@
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* wchar_t is available in stddef.h */
#undef HAVE_WCHAR_T_IN_STDDEF_H
/* Define to 1 if you have the <wctype.h> header file. */
#undef HAVE_WCTYPE_H

View File

@ -1,5 +1,5 @@
/*
* $Id: types.h 279 2008-07-21 05:27:34Z baconevi $
* $Id: types.h 281 2008-07-21 14:11:04Z baconevi $
*
* {License}
*/
@ -270,6 +270,12 @@ typedef int ase_mcint_t;
typedef int ase_wchar_t;
#endif
typedef int ase_wcint_t;
#elif defined(__linux) && (ASE_SIZEOF_INT == 4)
typedef int ase_wchar_t;
typedef int ase_wcint_t;
#elif defined(__linux) && (ASE_SIZEOF_LONG == 4)
typedef long ase_wchar_t;
typedef long ase_wcint_t;
#elif ASE_SIZEOF_LONG == 4
typedef long ase_wchar_t;
typedef long ase_wcint_t;