Properly guard an openssl header inclusion

This commit is contained in:
dmiller 2024-03-11 15:51:49 +00:00
parent 27fc667789
commit 00863472d6

View file

@ -5,7 +5,9 @@
LUALIB_API int luaopen_openssl(lua_State *L);
#if HAVE_OPENSSL
#include <openssl/bn.h>
int nse_pushbn( lua_State *L, BIGNUM *num, bool should_free);
#endif
#endif