]> mj.ucw.cz Git - libucw.git/blobdiff - lib/fb-file.c
declaration cosmetic fix
[libucw.git] / lib / fb-file.c
index 5fca69dafbcb278cfeafad95d28df8c051a1633c..d89522ef53c982ba6bf3cf6303fbfe55c4178af2 100644 (file)
@@ -4,15 +4,15 @@
  *     (c) 1997--2000 Martin Mares <mj@ucw.cz>
  */
 
+#include "lib/lib.h"
+#include "lib/fastbuf.h"
+#include "lib/lfs.h"
+
 #include <stdio.h>
 #include <string.h>
 #include <fcntl.h>
 #include <unistd.h>
 
-#include "lib.h"
-#include "fastbuf.h"
-#include "lfs.h"
-
 static int
 bfd_refill(struct fastbuf *f)
 {
@@ -66,7 +66,7 @@ bfd_close(struct fastbuf *f)
   close(f->fd);
 }
 
-struct fastbuf *
+static struct fastbuf *
 bfdopen_internal(int fd, uns buflen, byte *name)
 {
   int namelen = strlen(name) + 1;