kolibrios/contrib/media/updf/include/stdbool.h
right-hearted 4f7ee97ec9 uPDF with buttons
git-svn-id: svn://kolibrios.org@4680 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-03-22 21:00:40 +00:00

14 lines
306 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H
/* believe it or not but the Single Unix Specification actually
* specifies this header, see
* http://www.opengroup.org/onlinepubs/007904975/basedefs/stdbool.h.html */
#define bool int
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif