You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
350 B
27 lines
350 B
// pi().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/float.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cl_F.h"
|
|
#include "cl_F_tran.h"
|
|
|
|
namespace cln {
|
|
|
|
const cl_F pi (void)
|
|
{
|
|
floatformatcase(default_float_format
|
|
, return cl_SF_pi();
|
|
, return cl_FF_pi();
|
|
, return cl_DF_pi();
|
|
, return pi(len);
|
|
);
|
|
}
|
|
|
|
} // namespace cln
|