From d82b11e4a46307f1f1415024f33263e819c222b8 Mon Sep 17 00:00:00 2001 From: Brian Kernighan Date: Fri, 1 Apr 1988 02:03:04 -0500 Subject: [PATCH] last-minute fix: convert to ANSI C R=dmr DELTA=3 (2 added, 0 deleted, 1 changed) --- src/pkg/debug/macho/testdata/hello.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }