summaryrefslogtreecommitdiffstats
path: root/test/MSVS
diff options
context:
space:
mode:
authorJonathon Reinhart <Jonathon.Reinhart@gmail.com>2018-02-10 04:49:36 (GMT)
committerJonathon Reinhart <Jonathon.Reinhart@gmail.com>2018-02-11 23:13:26 (GMT)
commit090107e5282cdbff7481a52467b9abcba5a9652d (patch)
treefa27dd177c482671e9c9487c7e0bb9c961967310 /test/MSVS
parent8c41b52ca3d502bfd0444bf2640e345fb7b2ae9d (diff)
downloadSCons-090107e5282cdbff7481a52467b9abcba5a9652d.zip
SCons-090107e5282cdbff7481a52467b9abcba5a9652d.tar.gz
SCons-090107e5282cdbff7481a52467b9abcba5a9652d.tar.bz2
Replace all instances of `int main()` with `int main(void)`
Diffstat (limited to 'test/MSVS')
-rw-r--r--test/MSVS/CPPPATH-Dirs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/MSVS/CPPPATH-Dirs.py b/test/MSVS/CPPPATH-Dirs.py
index 45ec846..53c7a8b 100644
--- a/test/MSVS/CPPPATH-Dirs.py
+++ b/test/MSVS/CPPPATH-Dirs.py
@@ -68,7 +68,7 @@ test.write('SConstruct', SConscript_contents)
test.write('main.cpp', """\
#include <stdio.h>
-int main() {
+int main(void) {
printf("hello, world!\\n");
}
""")