[BACK]Return to array.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/Attic/array.h between version 1.4 and 1.5

version 1.4, 2010/02/06 23:22:27 version 1.5, 2010/06/05 16:32:22
Line 47 
Line 47 
         }                                                               \          }                                                               \
 } while (0)  } while (0)
   
 #define ARRAY_EMPTY(a) ((a) == NULL || (a)->num == 0)  #define ARRAY_EMPTY(a) (((void *) (a)) == NULL || (a)->num == 0)
 #define ARRAY_LENGTH(a) ((a)->num)  #define ARRAY_LENGTH(a) ((a)->num)
 #define ARRAY_DATA(a) ((a)->list)  #define ARRAY_DATA(a) ((a)->list)
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5