summaryrefslogtreecommitdiff
path: root/systems/msdos/vga2mf/foo.bar
diff options
context:
space:
mode:
Diffstat (limited to 'systems/msdos/vga2mf/foo.bar')
-rw-r--r--systems/msdos/vga2mf/foo.bar10
1 files changed, 10 insertions, 0 deletions
diff --git a/systems/msdos/vga2mf/foo.bar b/systems/msdos/vga2mf/foo.bar
new file mode 100644
index 0000000000..7735b1d281
--- /dev/null
+++ b/systems/msdos/vga2mf/foo.bar
@@ -0,0 +1,10 @@
+> % 91/05/24 Brian {Hamilton Kelly}, checking that the programs would work
+> % under VAX/VMS, replaced the line reading
+> FILE *f1,*f2;
+> % in each source with these lines
+> FILE *f1=(FILE *) NULL;
+> FILE *f2=(FILE *) NULL;
+> % (In C, there's no guarantee that automatic variables will have _any_
+> % particular value, let alone the (FILE *)NULL that was necessary here
+> % with the method the program uses to prompt for missing command-line
+> % arguments. Perhaps he was just lucky with his Unix & DOS :-)