diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-06-09 15:50:54 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-06-09 15:50:54 +0000 |
commit | a7496b997cb542080aeed7c36b23dec7ca613282 (patch) | |
tree | 4d720f7f19a118e299f3f26250224dd299bf0b78 /sal/inc | |
parent | a402cc51831f7187710897f3d04e6800126f0d23 (diff) |
INTEGRATION: CWS odff03 (1.3.380); FILE MERGED
2008/05/08 22:25:53 er 1.3.380.2: RESYNC: (1.3-1.4); FILE MERGED
2008/05/08 14:12:36 er 1.3.380.1: #i86775# added rtl_math_approxValue()
Diffstat (limited to 'sal/inc')
-rw-r--r-- | sal/inc/rtl/math.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sal/inc/rtl/math.h b/sal/inc/rtl/math.h index e616416867c5..96e2a02045b5 100644 --- a/sal/inc/rtl/math.h +++ b/sal/inc/rtl/math.h @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: math.h,v $ - * $Revision: 1.4 $ + * $Revision: 1.5 $ * * This file is part of OpenOffice.org. * @@ -399,6 +399,13 @@ double SAL_CALL rtl_math_round(double fValue, int nDecPlaces, */ double SAL_CALL rtl_math_pow10Exp(double fValue, int nExp) SAL_THROW_EXTERN_C(); +/** Rounds value to 15 significant decimal digits. + + @param fValue + The value to be rounded. + */ +double SAL_CALL rtl_math_approxValue(double fValue) SAL_THROW_EXTERN_C(); + #if defined __cplusplus } #endif /* __cplusplus */ |