Use p_new instead of xmalloc()
[apps/madmutt.git] / lib-lib / lib-lib.h
index 90cea2f..1b0769a 100644 (file)
 
 /* }}} */
 
-#include "mem.h"
+typedef union __attribute__((transparent_union)) anytype {
+    void  *ptr;
+    long  li;
+    int   i;
+    short si;
+} anytype;
 
+#include "mem.h"
 #include "str.h"
+
+#include "array.h"
 #include "buffer.h"
 #include "date.h"
 #include "file.h"