summaryrefslogtreecommitdiff
path: root/lib/libm/src/s_lrintl.c
blob: 994120ef6a28e92880272317765235bd9f85bf3c (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_lrintl.c 175309 2008-01-14 02:12:07Z das $");
#else
__RCSID("$NetBSD: s_lrintl.c,v 1.2 2017/05/07 11:29:21 martin Exp $");
#endif

#ifdef __HAVE_LONG_DOUBLE
#define stype		long double
#define	roundit		rintl
#define dtype		long
#define	fn		lrintl

#include "s_lrint.c"
#endif