From: Brian Kernighan Date: Fri, 1 Apr 1988 07:03:04 +0000 (-0500) Subject: last-minute fix: convert to ANSI C X-Git-Tag: weekly.2009-11-06~3848 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d82b11e4a46307f1f1415024f33263e819c222b8;p=gostls13.git last-minute fix: convert to ANSI C R=dmr DELTA=3 (2 added, 0 deleted, 1 changed) --- diff --git a/src/pkg/debug/macho/testdata/hello.c b/src/pkg/debug/macho/testdata/hello.c index 8626b30633..a689d3644e 100644 --- a/src/pkg/debug/macho/testdata/hello.c +++ b/src/pkg/debug/macho/testdata/hello.c @@ -1,6 +1,8 @@ #include -main() +int +main(void) { printf("hello, world\n"); + return 0; }