diff options
Diffstat (limited to 'test/buildtest_conf_api.c')
-rw-r--r-- | test/buildtest_conf_api.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/buildtest_conf_api.c b/test/buildtest_conf_api.c new file mode 100644 index 000000000000..aadda4a52908 --- /dev/null +++ b/test/buildtest_conf_api.c @@ -0,0 +1,16 @@ +/* + * Generated with test/generate_buildtest.pl, to check that such a simple + * program builds. + */ +#include <openssl/opensslconf.h> +#ifndef OPENSSL_NO_STDIO +# include <stdio.h> +#endif +#ifndef OPENSSL_NO_CONF_API +# include <openssl/conf_api.h> +#endif + +int main(void) +{ + return 0; +} |