1
0
mirror of https://github.com/golang/go synced 2024-11-05 23:26:18 -07:00
go/cmd/splitdwarf/internal/macho/testdata/hello.c
David Chase d674b4ad67 cmd/splitdwarf: copy debug/macho
The splitdwarf command will need a modified version of debug/macho.
This is a verbatim copy from std as of Go 1.11, which we'll modify in
the next CL.

Change-Id: Ia9ded870d1ba91dad21f9f6dc5bb38f9f6cc0e80
Reviewed-on: https://go-review.googlesource.com/c/152240
Run-TryBot: David Chase <drchase@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
Reviewed-by: David Chase <drchase@google.com>
2019-01-09 16:55:59 +00:00

9 lines
77 B
C

#include <stdio.h>
int
main(void)
{
printf("hello, world\n");
return 0;
}