1
0
mirror of https://github.com/simh/simh.git synced 2026-02-19 22:06:34 +00:00

Missing pieces for change to add tmxr_linemsgf.

This commit is contained in:
Mark Pizzolato
2013-04-24 09:01:45 -07:00
parent d364571c2c
commit 27283179d9
2 changed files with 12 additions and 12 deletions

View File

@@ -193,6 +193,18 @@ typedef uint32 t_addr;
#define T_ADDR_W 32
#endif /* end 64b address */
#if defined (_WIN32)
#define vsnprintf _vsnprintf
#endif
#if defined (__DECC) && defined (__VMS) && (defined (__VAX) || (__CRTL_VER <= 70311000))
#define NO_vsnprintf
#endif
#if defined( NO_vsnprintf)
#define STACKBUFSIZE 16384
#else
#define STACKBUFSIZE 2048
#endif
#if defined (VMS) && (defined (__ia64) || defined (__ALPHA))
#define HAVE_GLOB
#endif