blob: 3acbcb07c926258878b8e1ce883a403573f599c0 (
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_llroundf.c 144771 2005-04-08 00:52:27Z das $");
#else
__RCSID("$NetBSD: s_llroundf.c,v 1.1 2017/05/06 18:03:24 christos Exp $");
#endif
#define stype float
#define roundit roundf
#define dtype long long
#define DTYPE_MIN LLONG_MIN
#define DTYPE_MAX LLONG_MAX
#define fn llroundf
#include "s_lround.c"
|