mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
This allows one to invoke uname from lua scripts. Reviewed by: bapt, kevans, emaste MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D42017 (cherry picked from commit 1726db7af6b3738eb04d962b351d7f4017e1fc77)
12 lines
209 B
C
12 lines
209 B
C
/*-
|
|
*
|
|
* This file is in the public domain.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <lua.h>
|
|
|
|
int luaopen_posix_sys_stat(lua_State *L);
|
|
int luaopen_posix_sys_utsname(lua_State *L);
|
|
int luaopen_posix_unistd(lua_State *L);
|