summaryrefslogtreecommitdiff
path: root/src/curses/bool.c
blob: c7927d0d52d098588c4a2b71201b236b39d40f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <curses.h>
#if defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__
typedef _Bool bool;
#else
typedef int bool;
#endif

/*
XOPEN(4)
LINK(curses)
*/