diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-16 14:58:13 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-16 15:37:50 -0400 |
commit | dc2b1458ac51eed70317fcd6dfd68574459d1dc8 (patch) | |
tree | da27fe236dd7db2ae3989b65e88cb91b339992be | |
parent | 0cedf8e6cf8735b0de49b2bcbdbe43a65b88ab11 (diff) | |
download | roux-dc2b1458ac51eed70317fcd6dfd68574459d1dc8.tar.gz |
use unsigned long long for bits
-rw-r--r-- | all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/all.h b/all.h index 7a636cc..c729b86 100644 --- a/all.h +++ b/all.h @@ -11,7 +11,7 @@ typedef unsigned int uint; typedef unsigned short ushort; typedef unsigned long ulong; -typedef unsigned long bits; +typedef unsigned long long bits; typedef struct BSet BSet; typedef struct Ref Ref; |