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