diff options
-rw-r--r-- | lcrypt/lcrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lcrypt/lcrypt.c b/lcrypt/lcrypt.c index c578b49..779504e 100644 --- a/lcrypt/lcrypt.c +++ b/lcrypt/lcrypt.c @@ -43,7 +43,7 @@ static void* lcrypt_malloc(lua_State *L, size_t size) #include "lcrypt_ciphers.c" #include "lcrypt_hashes.c" -#include "lcrypt_math.c" +//#include "lcrypt_math.c" #include "lcrypt_bits.c" static int lcrypt_tohex(lua_State *L) @@ -283,7 +283,7 @@ int luaopen_lcrypt(lua_State *L) lcrypt_start_ciphers(L); lcrypt_start_hashes(L); - lcrypt_start_math(L); +// lcrypt_start_math(L); lcrypt_start_bits(L); lua_pop(L, 1); |