[pisa-src] r1602 - trunk/libpisa/util.h

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 10 Nov 2009 15:35:15 +0100

Author: biurrun
Date: Tue Nov 10 15:35:14 2009
New Revision: 1602

Log:
Remove unused macros PISA_REALLOC and PISA_FREE_SETNULL.

Modified:
   trunk/libpisa/util.h

Modified: trunk/libpisa/util.h
==============================================================================
--- trunk/libpisa/util.h        Tue Nov 10 13:46:00 2009        (r1601)
+++ trunk/libpisa/util.h        Tue Nov 10 15:35:14 2009        (r1602)
@@ -71,9 +71,7 @@
  * for malloc(), realloc() and free().
  */
 #define PISA_MALLOC(size)      pisa_malloc(size)
-#define PISA_REALLOC(obj, size)        pisa_realloc((obj), (size))
 #define PISA_FREE(obj)         pisa_free(obj)
-#define PISA_FREE_SETNULL(obj) pisa_free_setnull(obj)
 
 #define IPV4_TO_IPV6_MAP(in_addr_from, in6_addr_to)                       \
          {(in6_addr_to)->s6_addr32[0] = 0;                                \

Other related posts:

  • » [pisa-src] r1602 - trunk/libpisa/util.h - Diego Biurrun