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: a9a6315d9a84509cfc206c2403edbdec37ee0f1e222fba41cb375b04e3039e8a
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: 9830e8182e 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: a9a6315d9a 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: 77a13c87d7 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
27

28
29
30
31
32
33
34
 *
 * Revision 1.1  2000/10/31 04:29:50  geraint
 * Initial revision
 *
 */




#include <iostream>
#include <map>
#include <stack>
#include <string>










|
>







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>




MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]