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