summaryrefslogtreecommitdiff
path: root/lib/libm/src/s_llroundl.c
blob: ca71c0b52fde91806dd561fa3af81b0b419e288b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/cdefs.h>
#ifdef __FreeBSD__
__FBSDID("$FreeBSD: head/lib/msun/src/s_llroundl.c 144772 2005-04-08 01:24:08Z das $");
#else
__RCSID("$NetBSD: s_llroundl.c,v 1.1 2017/05/06 18:03:24 christos Exp $");
#endif

#define stype		long double
#define	roundit		roundl
#define dtype		long long
#define	DTYPE_MIN	LLONG_MIN
#define	DTYPE_MAX	LLONG_MAX
#define	fn		llroundl

#include "s_lround.c"