libnfc/win32/stdint/stdbool.h
2009-07-23 10:22:03 +00:00

14 lines
213 B
C

#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_