Changeset af68ef in git
- Timestamp:
- Apr 30, 2005, 7:38:41 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 46f16d4dd0abf5f668386093cdf1bf505129f3bc
- Parents:
- 91f1a306ee125a8792d3346850b71a9cb3cadefd
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/libparse.cc
r91f1a3 raf68ef 20 20 21 21 /* Scanner skeleton version: 22 * $Header: /exports/cvsroot-2/cvsroot/Singular/libparse.cc,v 1. 4 2005-02-23 15:31:34Singular Exp $22 * $Header: /exports/cvsroot-2/cvsroot/Singular/libparse.cc,v 1.5 2005-04-30 17:38:40 Singular Exp $ 23 23 */ 24 24 … … 1003 1003 * Computer Algebra System SINGULAR * 1004 1004 ****************************************/ 1005 /* $Id: libparse.cc,v 1. 4 2005-02-23 15:31:34Singular Exp $ */1005 /* $Id: libparse.cc,v 1.5 2005-04-30 17:38:40 Singular Exp $ */ 1006 1006 #include <stdio.h> 1007 1007 #include <string.h> … … 1575 1575 iiInitSingularProcinfo(pi, newlib, proc, yylplineno, 1576 1576 current_pos(0), p_static); 1577 #else STANDALONE_PARSER1577 #else /*STANDALONE_PARSER*/ 1578 1578 if( mode == LOAD_LIB) 1579 1579 { … … 1607 1607 Warn( " proc '%s' registered", proc ); 1608 1608 } 1609 #endif STANDALONE_PARSER1609 #endif /*STANDALONE_PARSER*/ 1610 1610 SET_DEF_END(mode, pi, current_pos(yyleng+1)); 1611 1611 #if YYLPDEBUG … … 1621 1621 #ifndef STANDALONE_PARSER 1622 1622 } 1623 #endif STANDALONE_PARSER1623 #endif /*STANDALONE_PARSER*/ 1624 1624 } 1625 1625 YY_BREAK -
Singular/libparse.l
r91f1a3 raf68ef 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 /* $Id: libparse.l,v 1.5 5 2005-02-23 15:31:33Singular Exp $ */5 /* $Id: libparse.l,v 1.56 2005-04-30 17:38:41 Singular Exp $ */ 6 6 #include <stdio.h> 7 7 #include <string.h> … … 325 325 iiInitSingularProcinfo(pi, newlib, proc, yylplineno, 326 326 current_pos(0), p_static); 327 #else STANDALONE_PARSER327 #else /*STANDALONE_PARSER*/ 328 328 if( mode == LOAD_LIB) 329 329 { … … 357 357 Warn( " proc '%s' registered", proc ); 358 358 } 359 #endif STANDALONE_PARSER359 #endif /*STANDALONE_PARSER*/ 360 360 SET_DEF_END(mode, pi, current_pos(yyleng+1)); 361 361 #if YYLPDEBUG … … 371 371 #ifndef STANDALONE_PARSER 372 372 } 373 #endif STANDALONE_PARSER373 #endif /*STANDALONE_PARSER*/ 374 374 } 375 375 example {
Note: See TracChangeset
for help on using the changeset viewer.