mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-20 02:25:14 -07:00
15 lines
236 B
C
15 lines
236 B
C
|
|
#define TEST_NAME "sodium_core"
|
|
#include "cmptest.h"
|
|
|
|
int main(void)
|
|
{
|
|
printf("%d\n", sodium_init());
|
|
|
|
(void)sodium_runtime_has_neon();
|
|
(void)sodium_runtime_has_sse2();
|
|
(void)sodium_runtime_has_sse3();
|
|
|
|
return 0;
|
|
}
|