aboutsummaryrefslogtreecommitdiff
path: root/test/buildtest_bio.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/buildtest_bio.c')
-rw-r--r--test/buildtest_bio.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/buildtest_bio.c b/test/buildtest_bio.c
new file mode 100644
index 000000000000..4e400d8280a4
--- /dev/null
+++ b/test/buildtest_bio.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_BIO
+# include <openssl/bio.h>
+#endif
+
+int main(void)
+{
+ return 0;
+}