You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
160 B
C
8 lines
160 B
C
4 years ago
|
#include <unistd.h>
|
||
|
#include "buffer.h"
|
||
|
|
||
|
int buffer_init_write_allocbuf(buffer* b, int fd, size_t ylen) {
|
||
|
return buffer_init_allocbuf(b, write, fd, ylen);
|
||
|
}
|
||
|
|