HEIMDAL: move code from source4/heimdal* to third_party/heimdal*
[Samba.git] / third_party / heimdal / lib / hcrypto / x25519 / align.h
blob57c90ecce690c54f930723e360ffc8d23fee144d
1 #ifndef CRYPTO_ALIGN
2 # if defined(__INTEL_COMPILER) || defined(_MSC_VER)
3 # define CRYPTO_ALIGN(x) __declspec(align(x))
4 # else
5 # define CRYPTO_ALIGN(x) __attribute__ ((aligned(x)))
6 # endif
7 #endif