From c856c2024c9aae4a69ef0887cdf41f05e508d280 Mon Sep 17 00:00:00 2001 From: Eric Ludlam Date: Mon, 31 Dec 2012 22:19:00 -0500 Subject: [PATCH] New test file. --- test/manual/cedet/integ_src/cpproot/main.cpp | 38 ++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 test/manual/cedet/integ_src/cpproot/main.cpp diff --git a/test/manual/cedet/integ_src/cpproot/main.cpp b/test/manual/cedet/integ_src/cpproot/main.cpp new file mode 100644 index 00000000000..7d3c6190adb --- /dev/null +++ b/test/manual/cedet/integ_src/cpproot/main.cpp @@ -0,0 +1,38 @@ +/* + * Main program for testing ede/cpp-root project. + */ + +#include "sppmacros.h" +#include "test.h" + +int main(int argc, char *argv[]) +{ + + return 0; +} + +#ifdef FEATURE1 +int feature1() +{ + return 1; +} +#endif + +#ifdef FEATURE2 +int feature2() +{ + return 2; +} +#endif + +#ifdef FEATURE3 +int feature3() +{ + return 3; +} +#endif + +int generic_feature() +{ + return 0; +} -- 2.39.2