pposix, signal: Ignore unused arguments.

This commit is contained in:
Emmanuel Gil Peyrot 2018-08-08 09:28:04 +02:00
parent 9d9392a941
commit 1a23a874bc
2 changed files with 3 additions and 0 deletions

View file

@ -237,6 +237,7 @@ int lc_syslog_log(lua_State *L) {
}
int lc_syslog_close(lua_State *L) {
(void)L;
closelog();
if(syslog_ident) {
@ -649,6 +650,7 @@ int lc_getrlimit(lua_State *L) {
}
int lc_abort(lua_State *L) {
(void)L;
abort();
return 0;
}