aboutsummaryrefslogtreecommitdiff
path: root/src/inc/def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/def.h')
-rw-r--r--src/inc/def.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/inc/def.h b/src/inc/def.h
deleted file mode 100644
index 22e1bda..0000000
--- a/src/inc/def.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef DEF_H
-#define DEF_H
-
-typedef unsigned int u32;
-typedef unsigned short u16;
-typedef unsigned char u8;
-
-typedef signed int s32;
-typedef signed short s16;
-typedef signed char s8;
-
-#define UNUSED(bla) ((void)(bla))
-#define MIN(a, b) (((a) < (b)) ? (a) : (b))
-#define MAX(a, b) (((a) > (b)) ? (a) : (b))
-
-#endif