convert to Draft-Proposed ANSI C

R=dmr
DELTA=5  (2 added, 0 deleted, 3 changed)
diff --git a/src/pkg/debug/macho/testdata/hello.c b/src/pkg/debug/macho/testdata/hello.c
index 2264d04..8626b30 100644
--- a/src/pkg/debug/macho/testdata/hello.c
+++ b/src/pkg/debug/macho/testdata/hello.c
@@ -1,3 +1,6 @@
-main() {
-	printf("hello, world");
+#include <stdio.h>
+
+main()
+{
+	printf("hello, world\n");
 }