pantry/projects/libwebsockets.org/fixture.c
Max Howell 05cbd58da5 +libwebsockets.org
probs should be core, but I dunno.
2022-11-25 08:12:37 -05:00

12 lines
257 B
C

#include <openssl/ssl.h>
#include <libwebsockets.h>
int main() {
struct lws_context_creation_info info;
memset(&info, 0, sizeof(info));
struct lws_context *context;
context = lws_create_context(&info);
lws_context_destroy(context);
return 0;
}