comparison fuhtark_test/include/stdbool.h @ 1500:91c8c3b7cbf0

add: futhark tests for generating vulkan api
author sam <sam@basx.dev>
date Wed, 26 Nov 2025 21:36:48 +0700
parents
children
comparison
equal deleted inserted replaced
1499:1f58458b7ef7 1500:91c8c3b7cbf0
1 #ifndef _STDBOOL_H
2 #define _STDBOOL_H
3
4 /* ISOC99 boolean */
5
6 #define bool _Bool
7 #define true 1
8 #define false 0
9 #define __bool_true_false_are_defined 1
10
11 #endif /* _STDBOOL_H */