diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-22 00:54:41 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-22 00:54:41 +0000 |
commit | dce591bf377a8ab145fcb4a480f2682a1b986241 (patch) | |
tree | 53e51d12c3680fe64b1434fe036159aa05ce62d2 /modules | |
parent | 4a83a80c044c9613bd50a63dd9ac5a97e2c028b5 (diff) |
added macro to test whether its been included or not
svn path=/trunk/externals/creb/; revision=5702
Diffstat (limited to 'modules')
-rw-r--r-- | modules/extlib_util.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/extlib_util.h b/modules/extlib_util.h index 3f92ab0..d1c563d 100644 --- a/modules/extlib_util.h +++ b/modules/extlib_util.h @@ -17,6 +17,9 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef CREB_EXTLIB_UTIL_H +#define CREB_EXTLIB_UTIL_H + #include <math.h> #include "m_pd.h" @@ -42,3 +45,7 @@ typedef union //#define IS_DENORMAL(f) (((*(unsigned int *)&(f))&0x7f800000) == 0) #define IS_DENORMAL(f) (((((t_flint)(f)).i) & 0x7f800000) == 0) + + + +#endif /* CREB_EXTLIB_UTIL_H */ |