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