11.1Schristos#include <sys/cdefs.h> 21.1Schristos#ifdef __FreeBSD__ 31.1Schristos__FBSDID("$FreeBSD: head/lib/msun/src/s_llroundf.c 144771 2005-04-08 00:52:27Z das $"); 41.1Schristos#else 51.1Schristos__RCSID("$NetBSD: s_llroundf.c,v 1.1 2017/05/06 18:03:24 christos Exp $"); 61.1Schristos#endif 71.1Schristos 81.1Schristos#define stype float 91.1Schristos#define roundit roundf 101.1Schristos#define dtype long long 111.1Schristos#define DTYPE_MIN LLONG_MIN 121.1Schristos#define DTYPE_MAX LLONG_MAX 131.1Schristos#define fn llroundf 141.1Schristos 151.1Schristos#include "s_lround.c" 16