diff options
author | Brent Cook <busterb@gmail.com> | 2024-02-25 18:12:24 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2024-03-03 15:32:50 -0600 |
commit | 499a33a35dd37da2899d3b55d2ff87d2c56efad9 (patch) | |
tree | fdcf79a6ac4ecfcb67d48111b0e92300734dff76 /include | |
parent | 1fd7e4453a163e7fd3a280dc2108d785b35519f3 (diff) | |
download | portable-499a33a35dd37da2899d3b55d2ff87d2c56efad9.tar.gz portable-499a33a35dd37da2899d3b55d2ff87d2c56efad9.tar.bz2 portable-499a33a35dd37da2899d3b55d2ff87d2c56efad9.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 | ||