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