summaryrefslogtreecommitdiff
path: root/lib/types.h
blob: 287a3b42b7c462e1cb43cc1f7869e4fb93068fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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