blob: f7365770f70d79772bd8fb9e471d4f52c6df3497 [file] [log] [blame]
/* This is just a compilation test, to see if we have a version of OpenSSL with
ALPN support installed. */
#include <stdlib.h>
#include <openssl/ssl.h>
int main() {
SSL_get0_alpn_selected(NULL, NULL, NULL);
return 0;
}