2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* libs/libc/math/lib_roundl.c
|
2012-12-07 17:00:56 +01:00
|
|
|
*
|
|
|
|
* This file is a part of NuttX:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
|
|
|
* (C) 2012 Petteri Aimonen <jpa@nx.mail.kapsi.fi>
|
|
|
|
*
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2012-12-07 17:00:56 +01:00
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2012-12-07 17:00:56 +01:00
|
|
|
* Included Files
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2012-12-07 17:00:56 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <nuttx/compiler.h>
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2015-10-03 01:43:18 +02:00
|
|
|
/****************************************************************************
|
2012-12-07 17:00:56 +01:00
|
|
|
* Public Functions
|
2015-10-03 01:43:18 +02:00
|
|
|
****************************************************************************/
|
2012-12-07 17:00:56 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_HAVE_LONG_DOUBLE
|
|
|
|
long double roundl(long double x)
|
|
|
|
{
|
|
|
|
long double f = modfl(x, &x);
|
|
|
|
if (x <= 0.0 && f <= -0.5)
|
|
|
|
{
|
|
|
|
x -= 1.0;
|
|
|
|
}
|
2014-04-13 22:32:20 +02:00
|
|
|
|
2012-12-07 17:00:56 +01:00
|
|
|
if (x >= 0.0 && f >= 0.5)
|
|
|
|
{
|
|
|
|
x += 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
#endif
|