remove unused __brk function/source file
[musl.git] / src / math / llrint.c
blob4f583ae5536aa6152c3bab8671846da507f8f57e
1 #include <math.h>
3 /* uses LLONG_MAX > 2^53, see comments in lrint.c */
5 long long llrint(double x)
7 return rint(x);