X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fsimple-lists.h;h=602275837d18ebe48f8a69a06801659977f12518;hb=b8667492cf36a609939ee35ac42900ff0b0cc80f;hp=64b819013bba01fb8c64a086357118f9c448c09d;hpb=11f146a06f5b52867197ffddffcbe97d58366f31;p=libucw.git diff --git a/ucw/simple-lists.h b/ucw/simple-lists.h index 64b81901..60227583 100644 --- a/ucw/simple-lists.h +++ b/ucw/simple-lists.h @@ -10,7 +10,14 @@ #ifndef _UCW_SIMPLE_LISTS_H #define _UCW_SIMPLE_LISTS_H -#include "ucw/clists.h" +#include + +#ifdef CONFIG_UCW_CLEAN_ABI +#define cf_2string_list_config ucw_cf_2string_list_config +#define cf_string_list_config ucw_cf_string_list_config +#define simp2_append ucw_simp2_append +#define simp_append ucw_simp_append +#endif /*** * To simplify very common usage of circular linked links, whose nodes can hold only one or two trivial values, @@ -28,7 +35,7 @@ typedef struct simp_node { char *s; void *p; int i; - uns u; + uint u; }; } simp_node; @@ -41,13 +48,13 @@ typedef struct simp2_node { char *s1; void *p1; int i1; - uns u1; + uint u1; }; union { char *s2; void *p2; int i2; - uns u2; + uint u2; }; } simp2_node;