CVSROOT: /cvs Module name: src Changes by: [email protected] 2015/06/19 00:20:11
Modified files:
lib/libtls : tls.h
Log message:
Add standard headers, C++ support to tls.h.
This makes using libtls easier to include by including dependent headers,
making something like this work as expected:
#include <iostream>
#include <tls.h>
int main()
{
std::cout << "tls_init: " << tls_init() << "\n";
}
This also makes building a standalone libtls-portable simpler.
ok doug@, jsing@
