freebsd/libexec/flua/modules/lposix.h
Ed Maste 405e3338ac flua: implement chmod
Lua does not provide a native way to change the permission of a file.

Submitted by:	Yang Wang <2333@outlook.jp>
Reviewed by:	kevans
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D24036
2020-03-13 15:40:35 +00:00

13 lines
180 B
C

/*-
*
* This file is in the public domain.
*/
/* $FreeBSD$ */
#pragma once
#include <lua.h>
int luaopen_posix_sys_stat(lua_State *L);
int luaopen_posix_unistd(lua_State *L);