diff options
| author | Brian Kernighan <bwk> | 1974-01-20 01:02:03 -0400 |
|---|---|---|
| committer | Brian Kernighan <bwk> | 1974-01-20 01:02:03 -0400 |
| commit | 0bb0b61d6a85b2a1a33dcbc418089656f2754d32 (patch) | |
| tree | 340c7334c4eeba0eba24cd07118e88eff011c294 /src/pkg/debug | |
| parent | 7d7c6a97f815e9279d08cfaea7d5efb5e90695a8 (diff) | |
| download | go-0bb0b61d6a85b2a1a33dcbc418089656f2754d32.tar.xz | |
convert to C
R=dmr
DELTA=6 (0 added, 3 deleted, 3 changed)
Diffstat (limited to 'src/pkg/debug')
| -rw-r--r-- | src/pkg/debug/macho/testdata/hello.b | 7 | ||||
| -rw-r--r-- | src/pkg/debug/macho/testdata/hello.c | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/src/pkg/debug/macho/testdata/hello.b b/src/pkg/debug/macho/testdata/hello.b deleted file mode 100644 index 05c4140424..0000000000 --- a/src/pkg/debug/macho/testdata/hello.b +++ /dev/null @@ -1,7 +0,0 @@ -main( ) { - extrn a, b, c; - putchar(a); putchar(b); putchar(c); putchar('!*n'); -} -a 'hell'; -b 'o, w'; -c 'orld'; diff --git a/src/pkg/debug/macho/testdata/hello.c b/src/pkg/debug/macho/testdata/hello.c new file mode 100644 index 0000000000..2264d04fbe --- /dev/null +++ b/src/pkg/debug/macho/testdata/hello.c @@ -0,0 +1,3 @@ +main() { + printf("hello, world"); +} |
