mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-29 13:03:42 +01:00
11 lines
293 B
C
11 lines
293 B
C
#include "cdefs-compat.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 LLONG_MIN
|
|
#define DTYPE_MAX LLONG_MAX
|
|
#define fn llroundl
|
|
|
|
#include "s_lround.c"
|