65816-llvm-mos/runtime/include/stdalign.h
Scott Duensing e65fedc8e1 Checkpoint
2026-05-13 15:48:34 -05:00

13 lines
274 B
C

// C11 stdalign.h — alias the keyword forms `_Alignas` / `_Alignof` to
// the more readable lowercase names.
#ifndef _STDALIGN_H
#define _STDALIGN_H
#define alignas _Alignas
#define alignof _Alignof
#define __alignas_is_defined 1
#define __alignof_is_defined 1
#endif