summaryrefslogtreecommitdiff
path: root/lib/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/types.h')
-rw-r--r--lib/types.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/types.h b/lib/types.h
deleted file mode 100644
index 287a3b42..00000000
--- a/lib/types.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef FIO_TYPES_H
-#define FIO_TYPES_H
-
-#ifndef CONFIG_HAVE_BOOL
-typedef int bool;
-#ifndef false
-#define false 0
-#endif
-#ifndef true
-#define true 1
-#endif
-#else
-#include <stdbool.h>
-#endif
-
-#endif