]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/gary.h
Imported tableprinter module
[libucw.git] / ucw / gary.h
index 2c4c4edd513ecd999180189adeec5563f032ec55..ffcabafb41749cadbecd9632aefb51c2460ed7d4 100644 (file)
@@ -10,6 +10,7 @@
 #include <ucw/alloc.h>
 
 #ifdef CONFIG_UCW_CLEAN_ABI
+#define gary_empty_hdr ucw_gary_empty_hdr
 #define gary_fix ucw_gary_fix
 #define gary_init ucw_gary_init
 #define gary_push_helper ucw_gary_push_helper
@@ -30,7 +31,7 @@ struct gary_hdr {
 /**
  * Create a new growing array, initially containing @n elements,
  * and let @ptr point to its first element. The memory used by the
- * array is allocated by xmalloc().
+ * array is allocated by <<basics:xmalloc()>>.
  **/
 #define GARY_INIT(ptr, n) (ptr) = gary_init(sizeof(*(ptr)), (n), &ucw_allocator_std)