summaryrefslogtreecommitdiff
path: root/test cases/swift/12 c std passthrough/header.h
blob: 287cdf4d7e4eee5fe22cf2e1493a98949229aa7b (plain)
1
2
3
4
5
6
7
8
9
10
#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