Overview
Comment: | *** empty log message *** |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
83d4b71acdfef919e9d9d2217f48d7ea |
User & Date: | gawthrop@users.sourceforge.net on 2000-05-11 19:34:50 |
Other Links: | branch diff | manifest | tags |
Context
2000-05-11
| ||
19:35:16 | Major revisions for new paprameter passing versions check-in: 56f4d4235d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:34:50 | *** empty log message *** check-in: 83d4b71acd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
19:34:35 | Now does state, params + simparams check-in: 7d4618dc38 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_p2c from [e3eb2fe827] to [3b442fe341].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.6 1999/04/20 06:17:15 peterg ## Fudge to avoid a bizzare bug (?) in p2c which corrupts "zero_matrix" ## ## Revision 1.5 1998/08/12 14:14:18 peterg ## Added pretty heading and explicitly include p2c header. ## ## Revision 1.4 1998/07/29 13:56:34 peterg | > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.7 1999/08/29 06:14:27 peterg ## No longer remove "PASCAL_MAIN" ## ## Revision 1.6 1999/04/20 06:17:15 peterg ## Fudge to avoid a bizzare bug (?) in p2c which corrupts "zero_matrix" ## ## Revision 1.5 1998/08/12 14:14:18 peterg ## Added pretty heading and explicitly include p2c header. ## ## Revision 1.4 1998/07/29 13:56:34 peterg |
︙ | ︙ | |||
78 79 80 81 82 83 84 | cat <<EOF >> $1_$2.c /* End of the header file. */ EOF ## The sed item is to avoid a bizzare bug (?) in p2c which corrupts "zero_matrix" | | > > > > > | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | cat <<EOF >> $1_$2.c /* End of the header file. */ EOF ## The sed item is to avoid a bizzare bug (?) in p2c which corrupts "zero_matrix" ###cat mtt_junk2 | sed 's/zero_matrix/mttmat/g'>> $1_$2.c ## Sort out the pascal EOF cat mtt_junk2 | sed 's/P_eof/feof/'>> $1_$2.c if [ -n "$info" ]; then cat mtt_p2c.log fi |