summaryrefslogtreecommitdiff
path: root/includes/General.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-04-13 12:44:14 +0000
committerpixel <pixel>2003-04-13 12:44:14 +0000
commit7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (patch)
treef25e693f7842364b0416593cf6a77d383812ce91 /includes/General.h
parentec2c97793151512f5dca3290dbd9f24a09b7ac6f (diff)
Removing Baltisot from there
Diffstat (limited to 'includes/General.h')
-rw-r--r--includes/General.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/includes/General.h b/includes/General.h
deleted file mode 100644
index 2b645c9..0000000
--- a/includes/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