mirror of
https://github.com/golang/go
synced 2024-11-22 00:44:39 -07:00
convert to C
R=dmr DELTA=6 (0 added, 3 deleted, 3 changed)
This commit is contained in:
parent
7d7c6a97f8
commit
0bb0b61d6a
7
src/pkg/debug/macho/testdata/hello.b
vendored
7
src/pkg/debug/macho/testdata/hello.b
vendored
@ -1,7 +0,0 @@
|
||||
main( ) {
|
||||
extrn a, b, c;
|
||||
putchar(a); putchar(b); putchar(c); putchar('!*n');
|
||||
}
|
||||
a 'hell';
|
||||
b 'o, w';
|
||||
c 'orld';
|
3
src/pkg/debug/macho/testdata/hello.c
vendored
Normal file
3
src/pkg/debug/macho/testdata/hello.c
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
main() {
|
||||
printf("hello, world");
|
||||
}
|
Loading…
Reference in New Issue
Block a user