1570af302Sopenharmony_ci#include <math.h>
2570af302Sopenharmony_ci
3570af302Sopenharmony_ci/* uses LLONG_MAX > 2^24, see comments in lrint.c */
4570af302Sopenharmony_ci
5570af302Sopenharmony_cilong long llrintf(float x)
6570af302Sopenharmony_ci{
7570af302Sopenharmony_ci	return rintf(x);
8570af302Sopenharmony_ci}
9