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