nim-bearssl/bearssl/abi/brssl_cpp.h
Jacek Sieka 917b7274f9
work around C++ linking issue (#50)
* test c++ support, work around linking issue

* fix imports, don't test C++ after all
2023-08-16 12:47:15 +02:00

12 lines
134 B
C

/* workaround until upstream fixes header */
#ifdef __cplusplus
extern "C" {
#endif
#include "brssl.h"
#ifdef __cplusplus
}
#endif