11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1998/07/26 10:44:08 peterg
## Now strips comment lines first
##
## Revision 1.3 1998/07/25 18:27:45 peterg
## now uses the (extended with switch) sympars.txt file
##
## Revision 1.2 1998/03/22 11:13:27 peterg
|
>
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 1998/11/18 11:34:24 peterg
## Cleaned up to:
## work properly for no globals
## no need to repeat las global
##
## Revision 1.4 1998/07/26 10:44:08 peterg
## Now strips comment lines first
##
## Revision 1.3 1998/07/25 18:27:45 peterg
## now uses the (extended with switch) sympars.txt file
##
## Revision 1.2 1998/03/22 11:13:27 peterg
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
globals_exist=1
}
if (NF>0)
printf (" ...\n %s", tolower($1));
}
END{
if (globals_exist)
print ";"
}'
# Now invoke the standard error handling.
# mtt_error mtt_error.txt
|
|
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
globals_exist=1
}
if (NF>0)
printf (" ...\n %s", tolower($1));
}
END{
if (globals_exist)
print " ;"
}'
# Now invoke the standard error handling.
# mtt_error mtt_error.txt
|