mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 14:33:38 +01:00
11 lines
284 B
C
11 lines
284 B
C
#include "cdefs-compat.h"
|
|
//__FBSDID("$FreeBSD: src/lib/msun/src/s_lroundl.c,v 1.1 2005/04/08 01:24:08 das Exp $");
|
|
|
|
#define type long double
|
|
#define roundit roundl
|
|
#define dtype long
|
|
#define DTYPE_MIN LONG_MIN
|
|
#define DTYPE_MAX LONG_MAX
|
|
#define fn lroundl
|
|
|
|
#include "s_lround.c"
|