1 #include <sys/cdefs.h> 2 #ifdef __FreeBSD__ 3 __FBSDID("$FreeBSD: head/lib/msun/src/s_lroundf.c 144771 2005-04-08 00:52:27Z das $"); 4 #else 5 __RCSID("$NetBSD: s_lroundf.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 11 #define DTYPE_MIN LONG_MIN 12 #define DTYPE_MAX LONG_MAX 13 #define fn lroundf 14 15 #include "s_lround.c" 16