1#ifndef __COMPAT_STDBOOL_H
2#define __COMPAT_STDBOOL_H
3
4#ifdef HAVE_STDBOOL_H
5#include <stdbool.h>
6#else
7typedef int bool;
8#define false 0
9#define true 1
10#endif
11
12#endif
13