diff options
author | Brad King <brad.king@kitware.com> | 2011-06-27 17:58:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-06-27 18:04:32 (GMT) |
commit | 831badeca25a8eca9e92dbbb181ea69b58112b2c (patch) | |
tree | 3f7f55b51e21d9de1223c0ce7e64a949750a871a /test/test_INT_C.c | |
download | CMake-831badeca25a8eca9e92dbbb181ea69b58112b2c.zip CMake-831badeca25a8eca9e92dbbb181ea69b58112b2c.tar.gz CMake-831badeca25a8eca9e92dbbb181ea69b58112b2c.tar.bz2 |
KWIML: The Kitware Information Macro Library
Provides header files that use preprocessor tests to detect and provide
information about the compiler and its target architecture. The headers
contain no configuration-time test results and thus may be installed
into an architecture-independent include directory. This makes them
suitable for use in the public interface of any package.
Diffstat (limited to 'test/test_INT_C.c')
-rw-r--r-- | test/test_INT_C.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/test_INT_C.c b/test/test_INT_C.c new file mode 100644 index 0000000..5513a0b --- /dev/null +++ b/test/test_INT_C.c @@ -0,0 +1,22 @@ +/*============================================================================ + Kitware Information Macro Library + Copyright 2010-2011 Kitware, Inc. + + Distributed under the OSI-approved BSD License (the "License"); + see accompanying file Copyright.txt for details. + + This software is distributed WITHOUT ANY WARRANTY; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the License for more information. +============================================================================*/ +#include "test.h" +#include KWIML_HEADER(INT.h) +#include "test_INT_format.h" +int test_INT_C(void) +{ + if(!test_INT_format()) + { + return 0; + } + return 1; +} |