Missing pieces for change to add tmxr_linemsgf.
This commit is contained in:
parent
d364571c2c
commit
27283179d9
2 changed files with 12 additions and 12 deletions
12
scp.c
12
scp.c
|
@ -6881,18 +6881,6 @@ if (sim_deb && (dptr->dctrl & dbits)) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#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
|
|
||||||
|
|
||||||
/* Inline debugging - will print debug message if debug file is
|
/* Inline debugging - will print debug message if debug file is
|
||||||
set and the bitmask matches the current device debug options.
|
set and the bitmask matches the current device debug options.
|
||||||
Extra returns are added for un*x systems, since the output
|
Extra returns are added for un*x systems, since the output
|
||||||
|
|
12
sim_defs.h
12
sim_defs.h
|
@ -193,6 +193,18 @@ typedef uint32 t_addr;
|
||||||
#define T_ADDR_W 32
|
#define T_ADDR_W 32
|
||||||
#endif /* end 64b address */
|
#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))
|
#if defined (VMS) && (defined (__ia64) || defined (__ALPHA))
|
||||||
#define HAVE_GLOB
|
#define HAVE_GLOB
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue