source:
vendor/gawk/3.1.5/test/paramtyp.awk@
3076
| Last change on this file since 3076 was 3076, checked in by , 19 years ago | |
|---|---|
| File size: 357 bytes | |
| Line | |
|---|---|
| 1 | # Sun Apr 25 13:28:58 IDT 1999 |
| 2 | # from Juegen Khars. This program should not core dump. |
| 3 | function ReadPGM(f, d) { |
| 4 | print "ReadPGM" |
| 5 | d[1] = 1 |
| 6 | } |
| 7 | |
| 8 | function WritePGM(f, d) { |
| 9 | print "WritePGM" |
| 10 | d[1] = 0 |
| 11 | } |
| 12 | |
| 13 | BEGIN { |
| 14 | print "before ReadPGM" |
| 15 | ReadPGM("", d) |
| 16 | print "after ReadPGM" |
| 17 | print "before WritePGM" |
| 18 | WritePGM("", d) |
| 19 | print "after WritePGM" |
| 20 | } |
Note:
See TracBrowser
for help on using the repository browser.
