Overview
Comment: | Include cstdlib (for exit) and cstdio (for EOF) in parse_m2cc.cc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
518b79b6e916523717c7be6f0f12ff83 |
User & Date: | geraint@users.sourceforge.net on 2014-07-12 19:24:06 |
Other Links: | branch diff | manifest | tags |
Context
2014-07-12
| ||
19:56:27 | Fixed style of NO WARRANTY from @heading to @strong because texi2html complained about having a heading in an enumerate environment check-in: 05ac0580de user: geraint@users.sourceforge.net tags: origin/master, trunk | |
19:24:06 | Include cstdlib (for exit) and cstdio (for EOF) in parse_m2cc.cc check-in: 518b79b6e9 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2014-07-10
| ||
23:13:27 | Fixed mtt.texi missing arguments and subsection level check-in: 2d671b4aa8 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/cc/parse_m2cc.cc from [dc545609f6] to [b1b04bdad9].
1 2 3 4 5 6 7 8 9 | /* $Id$ * $Log$ * Revision 1.3 2001/07/13 04:54:04 geraint * Branch merge: numerical-algebraic-solution back to main. * * Revision 1.2.2.1 2001/06/30 03:26:17 geraint * gcc-3.0 compatibility. * * Revision 1.2 2001/03/19 02:28:53 geraint | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | /* $Id$ * $Log$ * Revision 1.4 2002/05/01 12:54:55 geraint * Now recognises keywords terminated with ; as well as ws. * Now recognises # as a comment when not terminated by ws. * i.e. CarnotCycle_input.txt now gets translated correctly! * * Revision 1.3 2001/07/13 04:54:04 geraint * Branch merge: numerical-algebraic-solution back to main. * * Revision 1.2.2.1 2001/06/30 03:26:17 geraint * gcc-3.0 compatibility. * * Revision 1.2 2001/03/19 02:28:53 geraint |
︙ | ︙ | |||
20 21 22 23 24 25 26 | * * Revision 1.1 2000/10/31 04:29:50 geraint * Initial revision * */ | | > | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | * * Revision 1.1 2000/10/31 04:29:50 geraint * Initial revision * */ #include <cstdio> #include <cstdlib> #include <iostream> #include <map> #include <stack> #include <string> |
︙ | ︙ |