mirror of
https://github.com/mintsuki/freestanding-headers
synced 2024-11-21 20:11:18 +03:00
12 lines
141 B
C
12 lines
141 B
C
#ifndef _STDBOOL_H
|
|
#define _STDBOOL_H 1
|
|
|
|
#define bool _Bool
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif
|