libowfat/buffer/buffer_init_read_allocbuf.c

8 lines
158 B
C
Raw Normal View History

#include <unistd.h>
#include "buffer.h"
int buffer_init_read_allocbuf(buffer* b, int fd, size_t ylen) {
return buffer_init_allocbuf(b, read, fd, ylen);
}