From 0744ac969119db8a0ad3253951d375eb77cfce9e Mon Sep 17 00:00:00 2001 From: Brian Kernighan Date: Fri, 1 Apr 1988 02:02:04 -0500 Subject: [PATCH] convert to Draft-Proposed ANSI C R=dmr DELTA=5 (2 added, 0 deleted, 3 changed) --- src/pkg/debug/macho/testdata/hello.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pkg/debug/macho/testdata/hello.c b/src/pkg/debug/macho/testdata/hello.c index 2264d04fbe..8626b30633 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 + +main() +{ + printf("hello, world\n"); }