version 1.4, 2005/07/03 11:08:54 |
version 1.5, 2013/11/06 06:23:24 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/parserpass0.c,v 1.3 2001/05/04 01:06:24 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/parserpass0.c,v 1.4 2005/07/03 11:08:54 ohara Exp $ */ |
/* parserpass0.c */ |
/* parserpass0.c */ |
/* In this preprocessor, for example, the expression |
/* In this preprocessor, for example, the expression |
x^2+y^2-4+x y; |
x^2+y^2-4+x y; |
Line 182 static putstr(str,kind) |
|
Line 182 static putstr(str,kind) |
|
int k; char *newbuf; |
int k; char *newbuf; |
if (kind == INIT) { |
if (kind == INIT) { |
ptr = 0; |
ptr = 0; |
return; |
return 0; |
} |
} |
|
|
i=0; |
i=0; |
Line 204 static putstr(str,kind) |
|
Line 204 static putstr(str,kind) |
|
Buflimit *= 2; |
Buflimit *= 2; |
} |
} |
} |
} |
|
return 0; |
} |
} |
|
|
|
|