version 1.4, 2000/01/19 01:49:36 |
version 1.6, 2000/06/05 03:21:58 |
|
|
/* $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.3 2000/01/11 06:43:38 noro Exp $ */ |
/* $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.5 2000/02/08 04:47:12 noro Exp $ */ |
#include "ca.h" |
#include "ca.h" |
#include "al.h" |
#include "al.h" |
#include "parse.h" |
#include "parse.h" |
Line 152 static char asir_history[BUFSIZ]; |
|
Line 152 static char asir_history[BUFSIZ]; |
|
|
|
extern int mpi_myid; |
extern int mpi_myid; |
|
|
|
#if !defined(VISUAL_LIB) |
|
void ExitAsir() { |
|
exit(0); |
|
} |
|
#endif |
|
|
/* |
/* |
* status = 1 abnormal termination (error() etc.) |
* status = 1 abnormal termination (error() etc.) |
* status = 2 normal termination (end(), quit() etc.) |
* status = 2 normal termination (end(), quit() etc.) |
|
|
set_lasterror(s); |
set_lasterror(s); |
if ( CPVS != GPVS ) { |
if ( CPVS != GPVS ) { |
searchsn(&BDY(CPVS->usrf->f.usrf),evalstatline,&snp); |
searchsn(&BDY(CPVS->usrf->f.usrf),evalstatline,&snp); |
error_snode = *snp; |
if ( snp ) |
|
error_snode = *snp; |
|
else |
|
error_snode = 0; |
} else |
} else |
error_snode = 0; |
error_snode = 0; |
if ( do_file ) { |
if ( do_file ) { |
Line 725 void copyright() { |
|
Line 734 void copyright() { |
|
printf("Copyright (C) FUJITSU LABORATORIES LIMITED.\n"); |
printf("Copyright (C) FUJITSU LABORATORIES LIMITED.\n"); |
printf("1994-1999. All rights reserved.\n"); |
printf("1994-1999. All rights reserved.\n"); |
} |
} |
|
|