xref: /haiku/src/system/libroot/posix/musl/math/arm64/ceilf.c (revision 13581b3d2a71545960b98fefebc5225b5bf29072)
1 #include <math.h>
2 
3 float ceilf(float x)
4 {
5 	__asm__ ("frintp %s0, %s1" : "=w"(x) : "w"(x));
6 	return x;
7 }
8