diff options
Diffstat (limited to 'test/buildtest_cms.c')
-rw-r--r-- | test/buildtest_cms.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/buildtest_cms.c b/test/buildtest_cms.c new file mode 100644 index 000000000000..618d0d02ba2e --- /dev/null +++ b/test/buildtest_cms.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_CMS +# include <openssl/cms.h> +#endif + +int main(void) +{ + return 0; +} |