aboutsummaryrefslogtreecommitdiff
path: root/common/mooPdUtils.h
blob: 4917e7de379f64f63cdc56a16d915f09013cb891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*=============================================================================*\
 * File: mooPdUtils.h
 * Author: Bryan Jurish <moocow@ling.uni-potsdam.de>
 * Description: some generic utilities for pd externals
 *=============================================================================*/

#ifndef _MOO_PD_UTILS_H
#define _MOO_PD_UTILS_H

/*-- MOO_UNUSED : macro for unused attributes; to avoid compiler warnings */
#ifdef __GNUC__
# define MOO_UNUSED __attribute__((unused))
#else
# define MOO_UNUSED
#endif


#endif /* _MOO_PD_UTILS_H */