JulNadeauCA/libagar
CMakeChecks.cmake
:3245
check_c_source_compiles("
#include <stdint.h>
int main(int argc, char *argv[]) {
int8_t s8 = 2;
uint8_t u8 = 2;
int32_t s32 = 1234;
uint32_t u32 = 5678;
return (s8+u8 == 4 && s32+u32 > 6000 ? 0 : 1);
}
" _MK_HAVE_STDINT_H)