mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:43:45 +01:00
12 lines
227 B
C
12 lines
227 B
C
|
/* See LICENSE file for license and copyright information */
|
||
|
|
||
|
#ifndef ZATHURA_MACROS_H
|
||
|
#define ZATHURA_MACROS_H
|
||
|
|
||
|
#include <girara/macros.h>
|
||
|
|
||
|
#define UNUSED(x) GIRARA_UNUSED(x)
|
||
|
#define DEPRECATED(x) GIRARA_DEPRECATED(x)
|
||
|
|
||
|
#endif
|