13 lines
274 B
C
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
|