src/common.h : Add macro NOT.

This commit is contained in:
Erik de Castro Lopo 2010-10-06 19:40:51 +11:00
parent 6c5bc2fe8e
commit 264db5bc6a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-10-06 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/common.h
Add macro NOT.
2010-10-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c

View File

@ -90,6 +90,8 @@
#define ARRAY_LEN(x) ((int) (sizeof (x) / sizeof ((x) [0])))
#define NOT(x) (! (x))
#if (COMPILER_IS_GCC == 1)
#define SF_MAX(x,y) ({ \
typeof (x) sf_max_x1 = (x) ; \