mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 08:44:47 +01:00
19 lines
610 B
C
Vendored
19 lines
610 B
C
Vendored
/*===---- 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 */
|