From 7d7c6a97f815e9279d08cfaea7d5efb5e90695a8 Mon Sep 17 00:00:00 2001 From: Brian Kernighan Date: Tue, 18 Jul 1972 19:05:45 -0500 Subject: [PATCH] hello, world R=ken DELTA=7 (7 added, 0 deleted, 0 changed) --- src/pkg/debug/macho/testdata/hello.b | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/pkg/debug/macho/testdata/hello.b diff --git a/src/pkg/debug/macho/testdata/hello.b b/src/pkg/debug/macho/testdata/hello.b new file mode 100644 index 00000000000..05c4140424a --- /dev/null +++ b/src/pkg/debug/macho/testdata/hello.b @@ -0,0 +1,7 @@ +main( ) { + extrn a, b, c; + putchar(a); putchar(b); putchar(c); putchar('!*n'); +} +a 'hell'; +b 'o, w'; +c 'orld';