diff options
author | Brent Cook <busterb@gmail.com> | 2024-02-25 18:12:24 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-02-25 18:12:24 -0600 |
commit | 950b5bc1fb98c6e394a9aa05ecdb9dbd4253fd76 (patch) | |
tree | e3f82b1904163dd19a2f6e5bf71f1abf516b669c /include | |
parent | 500a1029e95215a2d37f7cdd5dd4090cd0685bd6 (diff) | |
download | portable-950b5bc1fb98c6e394a9aa05ecdb9dbd4253fd76.tar.gz portable-950b5bc1fb98c6e394a9aa05ecdb9dbd4253fd76.tar.bz2 portable-950b5bc1fb98c6e394a9aa05ecdb9dbd4253fd76.zip |
include placeholder cet.h for cpp
Diffstat (limited to 'include')
-rw-r--r-- | include/compat/cet.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/compat/cet.h b/include/compat/cet.h new file mode 100644 index 0000000..95517b0 --- /dev/null +++ b/include/compat/cet.h | |||
@@ -0,0 +1,13 @@ | |||
1 | /* | ||
2 | * Public domain | ||
3 | * cet.h compatibility shim | ||
4 | */ | ||
5 | |||
6 | #ifndef LIBCOMPAT_CET_H | ||
7 | #define LIBCOMPAT_CET_H | ||
8 | |||
9 | #ifndef _MSC_VER | ||
10 | #include_next <cet.h> | ||
11 | #endif | ||
12 | |||
13 | #endif | ||