| version 1.43, 2007/02/18 05:36:28 |
version 1.45, 2010/04/16 07:13:42 |
|
|
| * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
| * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
| * |
* |
| * $OpenXM: OpenXM_contrib2/asir2000/parse/lex.c,v 1.42 2006/09/29 08:58:22 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/parse/lex.c,v 1.44 2007/08/06 08:15:26 saito Exp $ |
| */ |
*/ |
| #include <ctype.h> |
#include <ctype.h> |
| #include "ca.h" |
#include "ca.h" |
|
|
| #else |
#else |
| #include "y.tab.h" |
#include "y.tab.h" |
| #endif |
#endif |
| |
#if FEP |
| |
#include <readline/readline.h> |
| |
#endif |
| |
|
| static int Getc(); |
static int Getc(); |
| static void Ungetc(int c); |
static void Ungetc(int c); |
| Line 678 static int Getc() { |
|
| Line 681 static int Getc() { |
|
| else |
else |
| c = Getc(); |
c = Getc(); |
| break; |
break; |
| } else if ( asir_infile->fp || do_file ) |
} else if ( asir_infile->fp || do_file ) { |
| asir_terminate(2); |
|
| else { |
|
| if ( asir_infile->fp ) |
if ( asir_infile->fp ) |
| clearerr(asir_infile->fp); |
clearerr(asir_infile->fp); |
| |
asir_terminate(2); |
| |
} else { |
| |
error("end-of-line detected during parsing"); |
| } |
} |
| else |
else |
| break; |
break; |