You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
236 B

  1. #define TEST_NAME "sodium_core"
  2. #include "cmptest.h"
  3. int main(void)
  4. {
  5. printf("%d\n", sodium_init());
  6. (void)sodium_runtime_has_neon();
  7. (void)sodium_runtime_has_sse2();
  8. (void)sodium_runtime_has_sse3();
  9. return 0;
  10. }