xref: /freebsd/lib/msun/src/s_lroundl.c (revision 3a92d97ff0f22d21608e1c19b83104c4937523b6)
1 #include <sys/cdefs.h>
2 __FBSDID("$FreeBSD$");
3 
4 #define type		long double
5 #define	roundit		roundl
6 #define dtype		long
7 #define	DTYPE_MIN	LONG_MIN
8 #define	DTYPE_MAX	LONG_MAX
9 #define	fn		lroundl
10 
11 #include "s_lround.c"
12