From 315d65b74168b23e820b9dde6166ec19bd048228 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 9 Feb 2012 23:02:17 +0100 Subject: [PATCH] Moved ucw/lfs.h to ucw/io.h More I/O functions will follow. --- ucw/Makefile | 2 +- ucw/doc/index.txt | 2 +- ucw/fb-atomic.c | 2 +- ucw/fb-direct.c | 2 +- ucw/fb-file.c | 2 +- ucw/fb-mmap.c | 2 +- ucw/fb-param.c | 2 +- ucw/{lfs.h => io.h} | 0 ucw/log-file.c | 2 +- ucw/partmap.c | 2 +- ucw/sorter/debug/radix-asio-test.c | 2 +- ucw/sorter/debug/radix-file-test.c | 2 +- ucw/tempfile.c | 2 +- 13 files changed, 12 insertions(+), 12 deletions(-) rename ucw/{lfs.h => io.h} (100%) diff --git a/ucw/Makefile b/ucw/Makefile index bf123268..6c44266b 100644 --- a/ucw/Makefile +++ b/ucw/Makefile @@ -48,7 +48,7 @@ LIBUCW_MAIN_INCLUDES= \ prime.h \ bitops.h \ conf.h getopt.h ipaccess.h \ - fastbuf.h lfs.h ff-unicode.h ff-binary.h \ + fastbuf.h io.h ff-unicode.h ff-binary.h \ url.h \ mainloop.h \ lizard.h \ diff --git a/ucw/doc/index.txt b/ucw/doc/index.txt index 4a14d521..30e3a182 100644 --- a/ucw/doc/index.txt +++ b/ucw/doc/index.txt @@ -65,7 +65,7 @@ Yet undocumented modules * `wildmatch.h` - File manipulation * `asio.h` - * `lfs.h` + * `io.h` * `partmap.h` - Address manipulation * `url.h` diff --git a/ucw/fb-atomic.c b/ucw/fb-atomic.c index 32c9ca9b..8b454485 100644 --- a/ucw/fb-atomic.c +++ b/ucw/fb-atomic.c @@ -9,7 +9,7 @@ #include "ucw/lib.h" #include "ucw/fastbuf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/conf.h" #include diff --git a/ucw/fb-direct.c b/ucw/fb-direct.c index 1e2dfd89..af49f8ce 100644 --- a/ucw/fb-direct.c +++ b/ucw/fb-direct.c @@ -27,7 +27,7 @@ #include "ucw/lib.h" #include "ucw/fastbuf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/asio.h" #include "ucw/conf.h" #include "ucw/threads.h" diff --git a/ucw/fb-file.c b/ucw/fb-file.c index 3eb2996f..77bf03cb 100644 --- a/ucw/fb-file.c +++ b/ucw/fb-file.c @@ -10,7 +10,7 @@ #include "ucw/lib.h" #include "ucw/fastbuf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include #include diff --git a/ucw/fb-mmap.c b/ucw/fb-mmap.c index 747b4286..2a8b5372 100644 --- a/ucw/fb-mmap.c +++ b/ucw/fb-mmap.c @@ -11,7 +11,7 @@ #include "ucw/lib.h" #include "ucw/fastbuf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/conf.h" #include diff --git a/ucw/fb-param.c b/ucw/fb-param.c index 22f988c6..528765cb 100644 --- a/ucw/fb-param.c +++ b/ucw/fb-param.c @@ -10,7 +10,7 @@ #include "ucw/lib.h" #include "ucw/conf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/fastbuf.h" #include diff --git a/ucw/lfs.h b/ucw/io.h similarity index 100% rename from ucw/lfs.h rename to ucw/io.h diff --git a/ucw/log-file.c b/ucw/log-file.c index 862b94c1..231344bd 100644 --- a/ucw/log-file.c +++ b/ucw/log-file.c @@ -11,7 +11,7 @@ #include "ucw/lib.h" #include "ucw/log.h" #include "ucw/log-internal.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/threads.h" #include "ucw/simple-lists.h" diff --git a/ucw/partmap.c b/ucw/partmap.c index a823d3d1..fd9d9124 100644 --- a/ucw/partmap.c +++ b/ucw/partmap.c @@ -9,7 +9,7 @@ */ #include "ucw/lib.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/partmap.h" #include diff --git a/ucw/sorter/debug/radix-asio-test.c b/ucw/sorter/debug/radix-asio-test.c index 168f6ff6..8e3368b0 100644 --- a/ucw/sorter/debug/radix-asio-test.c +++ b/ucw/sorter/debug/radix-asio-test.c @@ -6,7 +6,7 @@ #include "ucw/lib.h" #include "ucw/conf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/asio.h" #include diff --git a/ucw/sorter/debug/radix-file-test.c b/ucw/sorter/debug/radix-file-test.c index 46d1bb4c..11f32dd6 100644 --- a/ucw/sorter/debug/radix-file-test.c +++ b/ucw/sorter/debug/radix-file-test.c @@ -6,7 +6,7 @@ #include "ucw/lib.h" #include "ucw/conf.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include #include diff --git a/ucw/tempfile.c b/ucw/tempfile.c index 76d9cd38..f616990a 100644 --- a/ucw/tempfile.c +++ b/ucw/tempfile.c @@ -11,7 +11,7 @@ #include "ucw/lib.h" #include "ucw/conf.h" #include "ucw/threads.h" -#include "ucw/lfs.h" +#include "ucw/io.h" #include "ucw/fastbuf.h" #include -- 2.39.2