make-it-quick/config/check_uint.c

9 lines
86 B
C

#include <stdlib.h>
#include <stdint.h>
int main()
{
uint x = 0;
return x;
}