Skip to content

Commit

Permalink
test: update in ntt.h to avoid gcc warnings (note: clang does not com…
Browse files Browse the repository at this point in the history
…plain)
  • Loading branch information
tfaoliveira-sb committed Jul 26, 2024
1 parent b07af80 commit 4e13268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/jasmin/mlkem_ref/ntt.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
extern int16_t zetas[128];
extern int16_t zetas_inv[128];

void ntt(int16_t *poly);
void ntt(int16_t poly[256]);
void splitntt(int16_t *poly);

void invntt(int16_t *poly);
void invntt(int16_t poly[256]);
void basemul(int16_t r[2], const int16_t a[2], const int16_t b[2], int16_t zeta);

#endif

0 comments on commit 4e13268

Please sign in to comment.