Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/includes/stdalign.h
2 views
1
/* Alignmend <stdalign.h>
2
3
This file is part of the Public Domain C Library (PDCLib).
4
Permission is granted to use, modify, and / or redistribute at will.
5
*/
6
7
#ifndef _PDCLIB_STDALIGN_H
8
#define _PDCLIB_ALIGN_H _PDCLIB_ALIGN_H
9
10
#define alignas _Alignas
11
#define alignof _Alignof
12
13
#define __alignas_is_defined 1
14
#define __alignof_is_defined 1
15
16
#endif
17
18
19