kolibrios-fun/contrib/media/updf/include/stdbool.h
Serhii Sakhno cd35d38ad2 updf: restore menuetlibc version
git-svn-id: svn://kolibrios.org@8429 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-12-16 18:41:33 +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