util-src/*.c: Squeeze repeated blank lines

This commit is contained in:
Kim Alvefur 2017-01-23 18:33:35 +01:00
parent 272e5d06b4
commit 0d28378a7a
5 changed files with 0 additions and 8 deletions

View file

@ -251,7 +251,6 @@ static const luaL_Reg Reg_utf8[] = {
{ NULL, NULL }
};
/***************** STRINGPREP *****************/
#ifdef USE_STRINGPREP_ICU

View file

@ -7,7 +7,6 @@
--
*/
/*
* hashes.c
* Lua library for sha1, sha256 and md5 hashes

View file

@ -595,8 +595,6 @@ int lc_getrlimit(lua_State* L) {
return 2;
}
resource = luaL_checkstring(L, 1);
rid = string2resource(resource);

View file

@ -1,5 +1,4 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
@ -73,7 +72,6 @@ int rb_find(lua_State* L) {
return 0;
}
int rb_read(lua_State* L) {
ringbuffer* b = luaL_checkudata(L, 1, "ringbuffer_mt");
int r = luaL_checkinteger(L, 2);
@ -101,7 +99,6 @@ int rb_read(lua_State* L) {
return 1;
}
int rb_readuntil(lua_State* L) {
size_t l, m;
ringbuffer* b = luaL_checkudata(L, 1, "ringbuffer_mt");

View file

@ -19,7 +19,6 @@ static int Lpack(lua_State* L) {
return 1;
}
int luaopen_util_table(lua_State* L) {
#if (LUA_VERSION_NUM > 501)
luaL_checkversion(L);