summaryrefslogtreecommitdiff
path: root/lib/libm/aarch64/ceilf.c
blob: a449bf7b0b8b548acb9219c051f556c230e4151a (plain)
1
2
3
4
5
6
7
#include <math.h>

float ceilf(float x)
{
	__asm__("frintp %s0, %s1" : "=w"(x) : "w"(x));
	return x;
}