blob: 287cdf4d7e4eee5fe22cf2e1493a98949229aa7b [file] [log] [blame]
#pragma once
// let's just assume the default isn't c18.
#if __STDC_VERSION__ == 201710L
typedef struct Datatype {
int x;
} Datatype;
#else
#error C standard version not set!
#endif