mirror of
https://github.com/mintsuki/freestanding-headers
synced 2024-11-25 05:49:41 +03:00
21 lines
292 B
C
21 lines
292 B
C
#if !defined(_STDBOOL_H) || defined(__LIBC_GUARDLESS_INCLUDE)
|
|
|
|
#ifndef __cplusplus
|
|
# define bool _Bool
|
|
|
|
# define true 1
|
|
# define false 0
|
|
#endif
|
|
|
|
#ifndef _STDBOOL_H
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif
|
|
|
|
#if !defined(__LIBC_GUARDLESS_INCLUDE)
|
|
#define _STDBOOL_H 1
|
|
#endif
|
|
|
|
#endif
|