From ee3369307f3cdd1cd9d49bbd9fc7b5ce3553ff71 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 14 Mar 2006 18:21:12 +0000 Subject: [PATCH] should be main, not __main git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4589 212acab6-be3b-0410-9dea-997c60f758d6 --- SCons/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SCons/utils.py b/SCons/utils.py index fe129468..3ad802df 100644 --- a/SCons/utils.py +++ b/SCons/utils.py @@ -20,7 +20,7 @@ def check_compile_flag(ctx, flag): ctx.env.Append(CCFLAGS = flag) test = """ - int __main() { + int main() { return 0; } """ @@ -43,7 +43,7 @@ def check_link_flag(ctx, flag): ctx.env.Append(LINKFLAGS = flag) test = """ - int __main() { + int main() { return 0; } """