1#include <sys/cdefs.h>
2#ifdef __FreeBSD__
3__FBSDID("$FreeBSD: head/lib/msun/src/s_llroundf.c 144771 2005-04-08 00:52:27Z das $");
4#else
5__RCSID("$NetBSD: s_llroundf.c,v 1.1 2017/05/06 18:03:24 christos Exp $");
6#endif
7
8#define stype		float
9#define	roundit		roundf
10#define dtype		long long
11#define	DTYPE_MIN	LLONG_MIN
12#define	DTYPE_MAX	LLONG_MAX
13#define	fn		llroundf
14
15#include "s_lround.c"
16