X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Ffb-limfd.c;h=426f57f79d1d59e4c3b3135999b44e00a9173e7a;hb=d6b31769bf0164ece529921d0132e273a222b5a8;hp=0ce80c6ab90f1a4b5388567c10bbf0d8be1ce012;hpb=7cd23fb20722d8101fdfb4017f826a86663776bc;p=libucw.git diff --git a/ucw/fb-limfd.c b/ucw/fb-limfd.c index 0ce80c6a..426f57f7 100644 --- a/ucw/fb-limfd.c +++ b/ucw/fb-limfd.c @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#include "ucw/lib.h" -#include "ucw/fastbuf.h" +#include +#include #include @@ -40,7 +40,7 @@ bfl_close(struct fastbuf *f) } struct fastbuf * -bopen_limited_fd(int fd, uns buflen, uns limit) +bopen_limited_fd(int fd, uint buflen, uint limit) { struct fb_limfd *F = xmalloc(sizeof(struct fb_limfd) + buflen); struct fastbuf *f = &F->fb;