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

@ -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");