summaryrefslogtreecommitdiff
path: root/subvertpy/stdbool.h
blob: 588a9007f5d836a190d9f1bc29dfb90a8d2fb72a (plain)
1
2
3
4
5
6
7
8
9
/** Dummy header file to make some Windows compilers that aren't C99 compliant happy. */
#ifndef _STDBOOL_H_
#define _STDBOOL_H_

typedef char bool;
#define true 1
#define false 0

#endif