mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
9 lines
150 B
C
9 lines
150 B
C
|
|
#ifndef __LABWC_ZFREE_H
|
||
|
|
#define __LABWC_ZFREE_H
|
||
|
|
|
||
|
|
void __zfree(void **ptr);
|
||
|
|
|
||
|
|
#define zfree(ptr) __zfree((void **)&(ptr))
|
||
|
|
|
||
|
|
#endif /* __LABWC_ZFREE_H */
|