24 строки
679 B
C
24 строки
679 B
C
//---------------------------------------------------------------------//
|
|
// Wrapper header file that excludes Checked-C-specific declarations //
|
|
// if the compilation is not for Checked C, or if is for Checked C //
|
|
// but the implicit inclusion of checked header files is disabled. //
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#if !defined __checkedc || defined NO_IMPLICIT_INCLUDE_CHECKED_HDRS
|
|
|
|
#ifdef __checkedc
|
|
#pragma CHECKED_SCOPE push
|
|
#pragma CHECKED_SCOPE off
|
|
#endif
|
|
|
|
#include_next <stdlib.h>
|
|
|
|
#ifdef __checkedc
|
|
#pragma CHECKED_SCOPE pop
|
|
#endif
|
|
|
|
#else // checkedc && implicit include enabled
|
|
#include <stdlib_checked.h>
|
|
#endif
|