mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-30 05:37:13 +09:00
19 lines
319 B
C
19 lines
319 B
C
|
|
#ifndef __STDBOOL_H__
|
|
#define __STDBOOL_H__
|
|
|
|
#if defined(__cplusplus) || !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
|
|
typedef signed char _Bool;
|
|
# undef bool
|
|
# define bool _Bool
|
|
|
|
# ifndef __bool_true_false_are_defined
|
|
# undef false
|
|
# define false 0
|
|
# undef true
|
|
# define true 1
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|