genericopenlibs/openenvcore/libm/src/s_lroundf.c
changeset 0 e4d67989cc36
child 18 47c74d1534e1
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /*--------------------------------------------------------------------
       
     2  *© Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
       
     3  *--------------------------------------------------------------------
       
     4 */
       
     5 #include <sys/cdefs.h>
       
     6 #ifndef __SYMBIAN32__
       
     7 __FBSDID("$FreeBSD: src/lib/msun/src/s_lroundf.c,v 1.2 2005/04/08 00:52:27 das Exp $");
       
     8 #endif //__SYMBIAN32__
       
     9 
       
    10 #define type		float
       
    11 #define	roundit		roundf
       
    12 #define dtype		long
       
    13 #define	DTYPE_MIN	LONG_MIN
       
    14 #define	DTYPE_MAX	LONG_MAX
       
    15 #define	fn		lroundf
       
    16 
       
    17 #include "s_lround.c"