summaryrefslogtreecommitdiff
path: root/include/General.h
diff options
context:
space:
mode:
authorpixel <pixel>2002-12-05 06:03:04 +0000
committerpixel <pixel>2002-12-05 06:03:04 +0000
commite3e6c1d7688b350046fe3fe7c862f3b3a8c879c9 (patch)
tree6737d5899aba4bb8dcf11db86726c49d23c343b1 /include/General.h
parent2b47237b6fc07afb5c5a30b484283c69865a24b6 (diff)
Bleh
Diffstat (limited to 'include/General.h')
-rw-r--r--include/General.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/General.h b/include/General.h
deleted file mode 100644
index 2b645c9..0000000
--- a/include/General.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef __GENERAL_H__
-#define __GENERAL_H__
-
-#define MAX(__a,__b) ((__a)<(__b)?(__b):(__a))
-#define MIN(__a,__b) ((__a)>(__b)?(__b):(__a))
-
-#define BITCOUNT(x) (((BX_(x)+(BX_(x)>>4)) & 0x0F0F0F0F) % 255)
-#define BX_(x) ((x) - (((x)>>1)&0x77777777) \
- - (((x)>>2)&0x33333333) \
- - (((x)>>3)&0x11111111))
-
-#endif