master
 1#include <math.h>
 2
 3#ifdef _ARCH_PWR5X
 4
 5long lrint(double x)
 6{
 7	long n;
 8	__asm__ ("fctid %0, %1" : "=d"(n) : "d"(x));
 9	return n;
10}
11
12#else
13
14#include "../lrint.c"
15
16#endif