1226586Sdim/*===---- stdalign.h - Standard header for alignment ------------------------===
2226586Sdim *
3353358Sdim * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim * See https://llvm.org/LICENSE.txt for license information.
5353358Sdim * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6226586Sdim *
7226586Sdim *===-----------------------------------------------------------------------===
8226586Sdim */
9226586Sdim
10226586Sdim#ifndef __STDALIGN_H
11226586Sdim#define __STDALIGN_H
12226586Sdim
13249423Sdim#ifndef __cplusplus
14226586Sdim#define alignas _Alignas
15249423Sdim#define alignof _Alignof
16249423Sdim#endif
17249423Sdim
18226586Sdim#define __alignas_is_defined 1
19249423Sdim#define __alignof_is_defined 1
20226586Sdim
21226586Sdim#endif /* __STDALIGN_H */
22