/*=============================================================================*\ * File: mooPdUtils.h * Author: Bryan Jurish * 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 */