Files
p2pool-salvium/external/src/common/stdalign.h

10 lines
262 B
C
Raw Normal View History

2024-02-10 23:38:22 +01:00
#ifndef P2POOL_EXTERNAL_SRC_COMMON_STDALIGN_H
#define P2POOL_EXTERNAL_SRC_COMMON_STDALIGN_H
2024-02-11 17:08:28 +01:00
#if !defined(__cplusplus) && defined(_MSC_VER)
2024-02-10 23:38:22 +01:00
#define alignas(x) __declspec(align(x))
#define alignof __alignof
#endif
#endif // P2POOL_EXTERNAL_SRC_COMMON_STDALIGN_H