blob: d92b064c25101f3858ee5a548edb2815b8c8bd22 [file] [log] [blame]
#ifndef FIO_TYPES_H
#define FIO_TYPES_H
#if !defined(CONFIG_HAVE_BOOL) && !defined(__cplusplus)
typedef int bool;
#ifndef false
#define false 0
#endif
#ifndef true
#define true 1
#endif
#else
#include <stdbool.h> /* IWYU pragma: export */
#endif
#if !defined(CONFIG_HAVE_KERNEL_RWF_T)
typedef int __kernel_rwf_t;
#endif
#endif