New ACC version.
committer: mfx <mfx> 1058104401 +0000
This commit is contained in:
+1
-1
@@ -26,7 +26,7 @@
|
|||||||
#ifndef __ACC_H_INCLUDED
|
#ifndef __ACC_H_INCLUDED
|
||||||
#define __ACC_H_INCLUDED
|
#define __ACC_H_INCLUDED
|
||||||
|
|
||||||
#define ACC_VERSION 20030712L
|
#define ACC_VERSION 20030713L
|
||||||
|
|
||||||
#if !defined(ACC_CONFIG_INCLUDE)
|
#if !defined(ACC_CONFIG_INCLUDE)
|
||||||
# define ACC_CONFIG_INCLUDE(file) file
|
# define ACC_CONFIG_INCLUDE(file) file
|
||||||
|
|||||||
@@ -394,6 +394,7 @@
|
|||||||
# undef HAVE_SNPRINTF
|
# undef HAVE_SNPRINTF
|
||||||
# undef HAVE_VSNPRINTF
|
# undef HAVE_VSNPRINTF
|
||||||
# if (__TURBOC__ < 0x0200)
|
# if (__TURBOC__ < 0x0200)
|
||||||
|
# undef HAVE_RAISE
|
||||||
# undef HAVE_SIGNAL
|
# undef HAVE_SIGNAL
|
||||||
# endif
|
# endif
|
||||||
# if (__TURBOC__ < 0x0295)
|
# if (__TURBOC__ < 0x0295)
|
||||||
|
|||||||
+16
-1
@@ -60,13 +60,23 @@ __acc_gnuc_extension__ typedef unsigned long long acc_ullong_t;
|
|||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
#if (ACC_OS_DOS16 || ACC_OS_DOS32 || ACC_OS_OS2 || ACC_OS_OS216 || ACC_OS_WIN16 || ACC_OS_WIN32 || ACC_OS_WIN64)
|
#if (ACC_OS_DOS16 || ACC_OS_DOS32 || ACC_OS_OS2 || ACC_OS_OS216 || ACC_OS_WIN16 || ACC_OS_WIN32 || ACC_OS_WIN64)
|
||||||
# if (ACC_CC_GNUC || ACC_CC_PACIFICC || ACC_CC_WATCOMC)
|
# if (ACC_CC_GNUC || ACC_CC_PACIFICC)
|
||||||
|
# elif (ACC_OS_OS2 && (ACC_CC_DMC || ACC_CC_SYMANTECC || ACC_CC_ZORTECHC))
|
||||||
|
# define __acc_cdecl __cdecl
|
||||||
|
# define __acc_cdecl_atexit __pascal
|
||||||
|
# define __acc_cdecl_main __cdecl
|
||||||
|
# define __acc_cdecl_qsort __pascal
|
||||||
|
# elif (ACC_CC_WATCOMC)
|
||||||
|
# define __acc_cdecl __cdecl
|
||||||
# else
|
# else
|
||||||
|
# define __acc_cdecl __cdecl
|
||||||
# define __acc_cdecl_atexit __cdecl
|
# define __acc_cdecl_atexit __cdecl
|
||||||
# define __acc_cdecl_main __cdecl
|
# define __acc_cdecl_main __cdecl
|
||||||
# define __acc_cdecl_qsort __cdecl
|
# define __acc_cdecl_qsort __cdecl
|
||||||
# endif
|
# endif
|
||||||
# if (ACC_CC_GNUC || ACC_CC_PACIFICC || ACC_CC_WATCOMC)
|
# if (ACC_CC_GNUC || ACC_CC_PACIFICC || ACC_CC_WATCOMC)
|
||||||
|
# elif (ACC_OS_OS2 && (ACC_CC_DMC || ACC_CC_SYMANTECC || ACC_CC_ZORTECHC))
|
||||||
|
# define __acc_cdecl_sighandler __pascal
|
||||||
# elif (ACC_CC_MSC && (_MSC_VER >= 600 && _MSC_VER < 700))
|
# elif (ACC_CC_MSC && (_MSC_VER >= 600 && _MSC_VER < 700))
|
||||||
# if defined(_DLL)
|
# if defined(_DLL)
|
||||||
# define __acc_cdecl_sighandler _far _cdecl _loadds
|
# define __acc_cdecl_sighandler _far _cdecl _loadds
|
||||||
@@ -78,8 +88,13 @@ __acc_gnuc_extension__ typedef unsigned long long acc_ullong_t;
|
|||||||
# else
|
# else
|
||||||
# define __acc_cdecl_sighandler __cdecl
|
# define __acc_cdecl_sighandler __cdecl
|
||||||
# endif
|
# endif
|
||||||
|
#elif (ACC_OS_TOS && (ACC_CC_PUREC || ACC_CC_TURBOC))
|
||||||
|
# define __acc_cdecl cdecl
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__acc_cdecl)
|
||||||
|
# define __acc_cdecl
|
||||||
|
#endif
|
||||||
#if !defined(__acc_cdecl_atexit)
|
#if !defined(__acc_cdecl_atexit)
|
||||||
# define __acc_cdecl_atexit
|
# define __acc_cdecl_atexit
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user