diff options
-rw-r--r-- | arith.c | 1 | ||||
-rw-r--r-- | lib.h | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,6 @@ #define max(a, b) ((a) > (b) ? (a) : (b)) -#define TAG_PAIR(A, B) ((A) << TAG_SHIFT | (B)) #define CNUM_BIT ((int) sizeof (cnum) * CHAR_BIT) #define ABS(A) ((A) < 0 ? -(A) : (A)) @@ -73,6 +73,7 @@ typedef enum type { #define TYPE_SHIFT 5 #define TYPE_PAIR(A, B) ((A) << TYPE_SHIFT | (B)) +#define TAG_PAIR(A, B) ((A) << TAG_SHIFT | (B)) typedef enum functype { |