libnfc/win32/stdint/stdbool.h

15 lines
213 B
C
Raw Normal View History

2009-07-23 12:22:03 +02:00
#ifndef _STDBOOL_H_
#define _STDBOOL_H_
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
#define false 0
#define true 1
typedef int bool;
#endif // __cplusplus
#endif // _STDBOOL_H_