Changeset d636ad in git
- Timestamp:
- Mar 11, 1998, 1:03:47 PM (25 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 085370c3bc7e4c1b7148b5e0a0697d932dd8d11e
- Parents:
- c842903d4ea262ba5ecbf06f4ecb1cf7473572fe
- Location:
- Singular
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/grammar.y
rc842903 rd636ad 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: grammar.y,v 1.2 3 1998-03-06 11:51:13 krueger Exp $ */4 /* $Id: grammar.y,v 1.24 1998-03-11 12:03:40 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: SINGULAR shell grammatik … … 45 45 #include "syz.h" 46 46 #include "lists.h" 47 48 49 procinfo *iiInitSingularProcinfo(procinfo *pi, char *libname, char *procname, 50 int line, long pos, BOOLEAN pstatic=FALSE); 47 #include "libparse.h" 48 51 49 52 50 extern int yylineno; -
Singular/libparse.l
rc842903 rd636ad 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 /* $Id: libparse.l,v 1. 2 1998-03-06 12:12:03 krueger Exp $ */5 /* $Id: libparse.l,v 1.3 1998-03-11 12:03:46 Singular Exp $ */ 6 6 #include <stdio.h> 7 7 #include <string.h> … … 21 21 # include "febase.h" 22 22 # include "mmemory.h" 23 # include "libparse.h" 23 24 #endif 24 25 … … 87 88 } 88 89 #else /* STANDALONE_PARSER */ 89 procinfo *iiInitSingularProcinfo(procinfov pi, char *libname,90 char *procname, int line, long pos,91 BOOLEAN pstatic = 0);92 90 idhdl h; 93 91 # define pi IDPROC(h) 92 extern "C" 93 { 94 int yylpwrap(); 95 } 94 96 extern libstackv library_stack; 95 97 #endif /* STANDALONE_PARSER */
Note: See TracChangeset
for help on using the changeset viewer.