12 lines
300 B
C
12 lines
300 B
C
#include <sys/cdefs.h>
|
|
/* __FBSDID("$FreeBSD: src/lib/msun/src/s_llroundl.c,v 1.1 2005/04/08 01:24:08 das Exp $"); */
|
|
|
|
#define type long double
|
|
#define roundit roundl
|
|
#define dtype long long
|
|
#define DTYPE_MIN LONGLONG_MIN
|
|
#define DTYPE_MAX LONGLONG_MAX
|
|
#define fn llroundl
|
|
|
|
#include "s_lround.c"
|