summaryrefslogtreecommitdiffstats
path: root/Tests/CustomCommand
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-14 20:15:48 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-14 20:15:48 (GMT)
commit9762573aa95698c2299361ff2466657f85b27a8f (patch)
treed42500fdbaa40d64577d15ab6fb3e1118c725636 /Tests/CustomCommand
parent21975ceda54ca51bcc4c86fe798d30f10297df82 (diff)
downloadCMake-9762573aa95698c2299361ff2466657f85b27a8f.zip
CMake-9762573aa95698c2299361ff2466657f85b27a8f.tar.gz
CMake-9762573aa95698c2299361ff2466657f85b27a8f.tar.bz2
COMP: Fixed form of function main.
Diffstat (limited to 'Tests/CustomCommand')
-rw-r--r--Tests/CustomCommand/GeneratedHeader/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CustomCommand/GeneratedHeader/main.cpp b/Tests/CustomCommand/GeneratedHeader/main.cpp
index 254ecf5..1b3e85f 100644
--- a/Tests/CustomCommand/GeneratedHeader/main.cpp
+++ b/Tests/CustomCommand/GeneratedHeader/main.cpp
@@ -1,5 +1,5 @@
#include "generated.h"
-main()
+int main()
{
-
+ return 0;
}