Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5495 → Rev 5496

/contrib/media/updf/me/include/stdbool.h
0,0 → 1,13
#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