mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-28 16:11:14 -05:00
14 lines
176 B
C++
14 lines
176 B
C++
#if !__has_include(<tls.h>)
|
|
#error "missing LibreSSL's TLS header!"
|
|
#endif
|
|
|
|
#include <tls.h>
|
|
|
|
#include "jwt-cpp/jwt.h"
|
|
|
|
int main() {
|
|
tls_init();
|
|
jwt::date date;
|
|
return 0;
|
|
}
|