| /*===---- stddefer.h - Standard header for 'defer' -------------------------=== |
| * |
| * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| * See https://llvm.org/LICENSE.txt for license information. |
| * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| * |
| *===-----------------------------------------------------------------------=== |
| */ |
| |
| #ifndef __CLANG_STDDEFER_H |
| #define __CLANG_STDDEFER_H |
| |
| /* Provide 'defer' if '_Defer' is supported. */ |
| #ifdef __STDC_DEFER_TS25755__ |
| #define __STDC_VERSION_STDDEFER_H__ 202602L |
| #define defer _Defer |
| #endif |
| |
| #endif /* __CLANG_STDDEFER_H */ |