s_llrint.c 107 B

12345678
  1. #include <math.h>
  2. // FIXME: incorrect exception behavior
  3. long long llrint(double x)
  4. {
  5. return rint(x);
  6. }