405e3338ac
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
13 lines
180 B
C
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);
|