16 lines
403 B
C
16 lines
403 B
C
![]() |
#if defined(_MSC_VER) && !defined(__clang__) && !defined(__attribute__)
|
||
|
#define __attribute__(a)
|
||
|
#endif
|
||
|
|
||
|
#if defined(LIBRESSL_INTERNAL) && !defined(LIBRESSL_NAMESPACE)
|
||
|
# define LCRYPTO_UNUSED(x)
|
||
|
# define LCRYPTO_USED(x)
|
||
|
# define LCRYPTO_ALIAS1(pre, x)
|
||
|
# define LCRYPTO_ALIAS(x)
|
||
|
|
||
|
# define LSSL_UNUSED(x)
|
||
|
# define LSSL_USED(x)
|
||
|
# define LSSL_ALIAS(x)
|
||
|
#endif /* LIBRESSL_INTERNAL && !LIBRESSL_NAMESPACE */
|
||
|
|