1 /*	$OpenBSD: s_llroundl.c,v 1.1 2011/07/06 00:02:42 martynas Exp $	*/
2 
3 /*
4  * Written by Martynas Venckus.  Public domain
5  */
6 
7 #define	type		long double
8 #define	roundit		roundl
9 #define	dtype		long long
10 #define	DTYPE_MIN	LLONG_MIN
11 #define	DTYPE_MAX	LLONG_MAX
12 #define	fn		llroundl
13 
14 #include "s_lroundl.c"
15