mirror of
https://github.com/mintsuki/freestanding-headers
synced 2024-11-22 12:31:19 +03:00
17 lines
228 B
Plaintext
17 lines
228 B
Plaintext
|
#ifndef __cplusplus
|
||
|
#error "Must only use this header with C++"
|
||
|
#endif
|
||
|
|
||
|
#ifndef _CSTDALIGN
|
||
|
#define _CSTDALIGN 1
|
||
|
|
||
|
namespace std {
|
||
|
|
||
|
#define __LIBC_GUARDLESS_INCLUDE
|
||
|
#include <stdalign.h>
|
||
|
#undef __LIBC_GUARDLESS_INCLUDE
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|