xref: /netbsd-src/lib/libm/src/s_llroundl.c (revision 464b32545a12041970bd21a7f657b5bce306b323)
1 #include <sys/cdefs.h>
2 #ifdef __FreeBSD__
3 __FBSDID("$FreeBSD: head/lib/msun/src/s_llroundl.c 144772 2005-04-08 01:24:08Z das $");
4 #else
5 __RCSID("$NetBSD: s_llroundl.c,v 1.1 2017/05/06 18:03:24 christos Exp $");
6 #endif
7 
8 #define stype		long double
9 #define	roundit		roundl
10 #define dtype		long long
11 #define	DTYPE_MIN	LLONG_MIN
12 #define	DTYPE_MAX	LLONG_MAX
13 #define	fn		llroundl
14 
15 #include "s_lround.c"
16