X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fconf-section.c;h=9cac24a5d0e334457c08ab518dc2af0c84319e45;hb=2a97a3c705846855ca3b12f408426314c72d37bd;hp=4112d88883418cd2ffeae10ff9180948794fffb8;hpb=a4fe009d3366b0a3e119713b0ecc7fc0070efdfa;p=libucw.git diff --git a/ucw/conf-section.c b/ucw/conf-section.c index 4112d888..9cac24a5 100644 --- a/ucw/conf-section.c +++ b/ucw/conf-section.c @@ -8,11 +8,11 @@ * of the GNU Lesser General Public License. */ -#include "ucw/lib.h" -#include "ucw/conf.h" -#include "ucw/conf-internal.h" -#include "ucw/clists.h" -#include "ucw/binsearch.h" +#include +#include +#include +#include +#include #include @@ -24,7 +24,7 @@ struct dirty_section { }; #define GBUF_TYPE struct dirty_section #define GBUF_PREFIX(x) dirtsec_##x -#include "ucw/gbuf.h" +#include static dirtsec_t dirty; static uns dirties; @@ -44,7 +44,7 @@ cf_add_dirty(struct cf_section *sec, void *ptr) #define ASORT_KEY_TYPE struct dirty_section #define ASORT_ELT(i) dirty.ptr[i] #define ASORT_LT(x,y) x.sec < y.sec || x.sec == y.sec && x.ptr < y.ptr -#include "ucw/sorter/array-simple.h" +#include static void sort_dirty(void)