diff options
Diffstat (limited to 'tests/have_relpEngineSetTLSLibByName.c')
-rw-r--r-- | tests/have_relpEngineSetTLSLibByName.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/have_relpEngineSetTLSLibByName.c b/tests/have_relpEngineSetTLSLibByName.c new file mode 100644 index 0000000..f8e5d88 --- /dev/null +++ b/tests/have_relpEngineSetTLSLibByName.c @@ -0,0 +1,10 @@ +#include "config.h" + +int main(int argc __attribute__((unused)), char *argv[]__attribute__((unused))) +{ +#if defined(HAVE_RELPENGINESETTLSLIBBYNAME) + return 0; +#else + return 1; +#endif +} |