xref: /freebsd/stand/kboot/kboot/lua_bindings.c (revision 1edb7116)
1 /*
2  * Copyright (c) 2024 Netflix, Inc.
3  *
4  * SPDX-License-Identifier: BSD-2-Clause
5  */
6 
7 #include "lua.h"
8 #include "lauxlib.h"
9 #include "lutils.h"
10 #include "lhash.h"
11 
12 static void
13 lua_hash_bindings(lua_State *L)
14 {
15 	luaL_requiref(L, "hash", luaopen_hash, 1);
16 	lua_pop(L, 1);	/* Remove lib */
17 }
18 
19 LUA_COMPILE_SET(lua_hash_bindings);
20