Overview
Comment:Convert variable names to lower case.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/merging-ode2odes-exe | trunk
Files: files | file ages | folders
SHA3-256: 413c4c42a4e0abe4a03f1c7339a2d5b9860f698c97f760fabb6468c824df2364
User & Date: geraint@users.sourceforge.net on 2001-03-16 03:56:54
Other Links: branch diff | manifest | tags
Context
2001-03-17
09:51:07
Implemented Runge-Kutta IV fixed-step method (-i rk4). check-in: 9c788a5adb user: geraint@users.sourceforge.net tags: origin/merging-ode2odes-exe, trunk
2001-03-16
03:56:54
Convert variable names to lower case. check-in: 413c4c42a4 user: geraint@users.sourceforge.net tags: origin/merging-ode2odes-exe, trunk
03:56:13
Removed psignal/siginfo.h - problematic and unnecessary. check-in: 02cafa61b7 user: geraint@users.sourceforge.net tags: origin/merging-ode2odes-exe, trunk
Changes

Modified mttroot/mtt/cc/sympar_txt2h.sh from [9ef7c9027a] to [21b8e13116].

1
2
3




4
5
6
7
8
9
10
1
2
3
4
5
6
7
8
9
10
11
12
13
14



+
+
+
+







#! /bin/sh
# $Id$
# $Log$
# Revision 1.2  2001/02/05 13:03:19  geraint
# Restrict scope of variables to file (static).
# Warn GCC that variables may be unused.
#
# Revision 1.7  2001/01/09 15:43:50  geraint
# Warn gcc that variables may be unused.
#
# Revision 1.6  2001/01/08 05:47:56  geraint
# Restrict scope of variables to file (static)
#
# Revision 1.5  2000/12/05 12:44:55  peterg
39
40
41
42
43
44
45
46

47
48
49
50
51
52
53
43
44
45
46
47
48
49

50
51
52
53
54
55
56
57







-
+







TMP_VAR_NAMES="mtt_tmp mtt_o $*"

IN=${SYS}_sympar.txt
OUT=${SYS}_sympar.h

declare_sys_param ()
{
cat ${IN} | awk '{printf ("static double %s MTT_UNUSED;\t// %s\n", $1, $2)}'
cat ${IN} | awk '{printf ("static double %s MTT_UNUSED;\t// %s\n", tolower($1), $2)}'
}

declare_temp_vars ()
{
for name in ${TMP_VAR_NAMES}
do
    echo ""


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