diff options
author | pixel <pixel> | 2008-07-22 14:34:15 +0000 |
---|---|---|
committer | pixel <pixel> | 2008-07-22 14:34:15 +0000 |
commit | e6b0c4399579d66d2cd6205d61681500b2787609 (patch) | |
tree | e31c200375147b4d2ec9f394c488af94a3365a6b /lib | |
parent | 86391010af186308b2a8cde152ea98b484f8d101 (diff) |
A little bit more cleaning here.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/RandISAAC.cc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/RandISAAC.cc b/lib/RandISAAC.cc index 021bf20..69bf2f7 100644 --- a/lib/RandISAAC.cc +++ b/lib/RandISAAC.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: RandISAAC.cc,v 1.2 2008-07-18 14:05:39 pixel Exp $ */ +/* $Id: RandISAAC.cc,v 1.3 2008-07-22 14:34:15 pixel Exp $ */ /* Based on ISAAC. See original (C) mention below. */ @@ -36,14 +36,6 @@ MODIFIED: #include <RandISAAC.h> -#define bis(target,mask) ((target) |= (mask)) -#define bic(target,mask) ((target) &= ~(mask)) -#define bit(target,mask) ((target) & (mask)) - -#ifndef align -# define align(a) (((Uint32)a+(sizeof(void *)-1))&(~(sizeof(void *)-1))) -#endif /* align */ - #define ind(mm,x) ((mm)[(x>>2)&(RANDSIZ-1)]) #define rngstep(mix,a,b,mm,m,m2,r,x) \ { \ |