From: Brian Kernighan Date: Fri, 1 Apr 1988 07:02:04 +0000 (-0500) Subject: convert to Draft-Proposed ANSI C X-Git-Tag: weekly.2009-11-06~3849 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0744ac969119db8a0ad3253951d375eb77cfce9e;p=gostls13.git 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 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"); }