repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
HEIMDAL: move code from source4/heimdal* to third_party/heimdal*
[Samba.git]
/
third_party
/
heimdal
/
lib
/
hcrypto
/
x25519
/
align.h
blob
57c90ecce690c54f930723e360ffc8d23fee144d
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