aboutsummaryrefslogtreecommitdiff
path: root/include/compat/cet.h
blob: bb845deb6f990373b5172e619686f547e241ca64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Public domain
 * cet.h compatibility shim
 */

#ifndef LIBCOMPAT_CET_H
#define LIBCOMPAT_CET_H

#ifndef _MSC_VER

#ifdef __CET__
#   include_next <cet.h>
#else
#   define _CET_ENDBR
#endif

#endif

#endif