Mercurial > games > semicongine
view 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 |
line wrap: on
line source
#ifndef _STDBOOL_H #define _STDBOOL_H /* ISOC99 boolean */ #define bool _Bool #define true 1 #define false 0 #define __bool_true_false_are_defined 1 #endif /* _STDBOOL_H */
