mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
9 lines
194 B
C
9 lines
194 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef __LABWC_ZFREE_H
|
|
#define __LABWC_ZFREE_H
|
|
|
|
void __zfree(void **ptr);
|
|
|
|
#define zfree(ptr) __zfree((void **)&(ptr))
|
|
|
|
#endif /* __LABWC_ZFREE_H */
|