should be main, not __main

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4589 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-03-14 18:21:12 +00:00
parent 674cf5d3ba
commit ee3369307f

View file

@ -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;
}
"""