s_lrintf.c 102 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7 8
#include <math.h>

// FIXME: incorrect exception behavior

long lrintf(float x)
{
	return rintf(x);
}