blob: 97b2c2b319c0aded61c76a3d075c539fbf2b6d24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Some standard helpful macros.
*
* Written by Russ Allbery <rra@stanford.edu>
* This work is hereby placed in the public domain by its author.
*/
#ifndef UTIL_MACROS_H
#define UTIL_MACROS_H 1
#include <config.h>
#include <portable/macros.h>
/* Used for unused parameters to silence gcc warnings. */
#define UNUSED __attribute__((__unused__))
#endif /* UTIL_MACROS_H */
|