From: Eric Ludlam Date: Tue, 1 Jan 2013 03:19:00 +0000 (-0500) Subject: New test file. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c856c2024c9aae4a69ef0887cdf41f05e508d280;p=emacs.git New test file. --- 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; +}