version 1.1, 1999/12/03 07:39:07 |
version 1.6, 2000/02/08 04:47:09 |
|
|
/* $OpenXM: OpenXM/src/asir99/builtin/ctrl.c,v 1.3 1999/11/23 07:14:14 noro Exp $ */ |
/* $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.5 2000/02/07 03:21:42 noro Exp $ */ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
|
|
Line 13 extern int prtime,nez,echoback,bigfloat; |
|
Line 13 extern int prtime,nez,echoback,bigfloat; |
|
extern int GC_free_space_numerator,GC_free_space_divisor,debug_up,no_prompt; |
extern int GC_free_space_numerator,GC_free_space_divisor,debug_up,no_prompt; |
extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11; |
extern int GC_max_heap_size,Verbose,hideargs,hex_output,do_server_in_X11; |
extern int do_message; |
extern int do_message; |
extern int ox_batch,ox_check; |
extern int ox_batch,ox_check,ox_exchange_mathcap; |
extern int f4_nocheck; |
extern int f4_nocheck; |
|
extern int fortran_output; |
|
|
static struct { |
static struct { |
char *key; |
char *key; |
|
|
{"cputime",&prtime}, |
{"cputime",&prtime}, |
{"nez",&nez}, |
{"nez",&nez}, |
{"echo",&echoback}, |
{"echo",&echoback}, |
|
#if DO_PLOT |
{"bigfloat",&bigfloat}, |
{"bigfloat",&bigfloat}, |
|
#endif |
{"verbose",&Verbose}, |
{"verbose",&Verbose}, |
{"hideargs",&hideargs}, |
{"hideargs",&hideargs}, |
{"hex",&hex_output}, |
{"hex",&hex_output}, |
|
|
{"no_prompt",&no_prompt}, |
{"no_prompt",&no_prompt}, |
{"ox_batch",&ox_batch}, |
{"ox_batch",&ox_batch}, |
{"ox_check",&ox_check}, |
{"ox_check",&ox_check}, |
|
{"ox_exchange_mathcap",&ox_exchange_mathcap}, |
{"f4_nocheck",&f4_nocheck}, |
{"f4_nocheck",&f4_nocheck}, |
|
{"fortran_output",&fortran_output}, |
{0,0}, |
{0,0}, |
}; |
}; |
|
|