From: Paul Brossier Date: Tue, 10 Oct 2006 13:09:34 +0000 (+0000) Subject: add define for __attribute__((unused)) X-Git-Tag: bzr2git~535 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ec399cf3b590f1162bcfdedca3d0b70eeab152d6;p=aubio.git add define for __attribute__((unused)) add define for __attribute__((unused)) --- diff --git a/src/aubio_priv.h b/src/aubio_priv.h index 36a0bf41..d3504f79 100644 --- a/src/aubio_priv.h +++ b/src/aubio_priv.h @@ -169,4 +169,6 @@ typedef enum { #define ELEM_SWAP(a,b) { register smpl_t t=(a);(a)=(b);(b)=t; } +#define UNUSED __attribute__((unused)) + #endif/*_AUBIO_PRIV_H*/