csubq function

int csubq(
  1. int x
)

Implementation

int csubq(int x) {
  if (x >= KYBER_Q) {
    x -= KYBER_Q;
  }
  return x;
}