version 1.18, 2002/02/24 10:27:18 |
version 1.30, 2004/06/15 08:15:11 |
|
|
/* global.c $OpenXM: OpenXM/src/kan96xx/Kan/global.c,v 1.17 2001/08/21 14:12:46 takayama Exp $ */ |
/* global.c $OpenXM: OpenXM/src/kan96xx/Kan/global.c,v 1.29 2004/02/25 23:14:35 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
#include <setjmp.h> |
#include <setjmp.h> |
#include "datatype.h" |
#include "datatype.h" |
Line 103 int CmoDMSOutputOption = 0; /* Output with |
|
Line 103 int CmoDMSOutputOption = 0; /* Output with |
|
(1) RING_BY_NAME or (0) DMS_OF_N_VARIABLES. |
(1) RING_BY_NAME or (0) DMS_OF_N_VARIABLES. |
plugin/cmo.c */ |
plugin/cmo.c */ |
int SecureMode = 0; |
int SecureMode = 0; |
|
int Ecart = 0; |
|
int EcartAutomaticHomogenization = 0; |
|
int TraceLift = 0; |
|
struct ring *TraceLift_ringmod = NULL; |
|
int DoCancel = 0; |
|
int QuoteMode = 0; |
|
|
/* global variables for stackmachine.c */ |
/* global variables for stackmachine.c */ |
int VerboseStack = 1; /* 0 is quiet, 1 is standard, 2 ... */ |
int VerboseStack = 1; /* 0 is quiet, 1 is standard, 2 ... */ |
Line 123 jmp_buf EnvOfStackMachine; |
|
Line 129 jmp_buf EnvOfStackMachine; |
|
#endif |
#endif |
#endif |
#endif |
|
|
#if defined(__CYGWIN__) |
|
int errno; |
|
#endif |
|
|
|
struct object NullObject; |
struct object NullObject; |
struct object NoObject; |
struct object NoObject; |
|
|
Line 135 int Lookup[TYPES][TYPES]; |
|
Line 137 int Lookup[TYPES][TYPES]; |
|
int Quiet = 0; |
int Quiet = 0; |
int TimerOn = 0; |
int TimerOn = 0; |
|
|
char *VersionString = "3.010821"; |
char *VersionString = "3.040223"; |
|
|
char *LeftBracket = NULL; |
char *LeftBracket = NULL; |
char *RightBracket = NULL; |
char *RightBracket = NULL; |
Line 155 FILE *Fk = NULL; /* Initialized to stdout in stackmac |
|
Line 157 FILE *Fk = NULL; /* Initialized to stdout in stackmac |
|
stackmachine_init() { |
stackmachine_init() { |
int i,j; |
int i,j; |
extern FILE *BaseFp; |
extern FILE *BaseFp; |
|
GC_init(); |
OxSystemVersion = VersionString; |
OxSystemVersion = VersionString; |
Fstack = stdout; /* initialize output stream */ |
Fstack = stdout; /* initialize output stream */ |
Fk = stdout; |
Fk = stdout; |