Merge branch 'samples-colnames' of https://github.com/parallel-fs-utils/fio
[fio.git] / lib / types.h
... / ...
CommitLineData
1#ifndef FIO_TYPES_H
2#define FIO_TYPES_H
3
4#if !defined(CONFIG_HAVE_BOOL) && !defined(__cplusplus)
5typedef int bool;
6#ifndef false
7#define false 0
8#endif
9#ifndef true
10#define true 1
11#endif
12#else
13#include <stdbool.h> /* IWYU pragma: export */
14#endif
15
16#endif