Changeset 516e780 in mainline for uspace/lib/c/include/fenv.h
- Timestamp:
- 2018-08-31T11:55:41Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fa86fff
- Parents:
- 7f7d642
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-08-31 11:55:41)
- git-committer:
- GitHub <noreply@…> (2018-08-31 11:55:41)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/fenv.h
r7f7d642 r516e780 1 1 /* 2 * Copyright (c) 201 5 Jiri Svoboda2 * Copyright (c) 2018 CZ.NIC, z.s.p.o. 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libmath 30 * @{ 31 */ 32 /** @file 33 */ 29 #ifndef _FENV_H 30 #define _FENV_H 34 31 35 #ifndef LIBMATH_EXP_H_ 36 #define LIBMATH_EXP_H_ 32 // TODO 37 33 38 #include <mathtypes.h> 34 #define FE_TOWARDZERO 0 35 #define FE_TONEAREST 1 36 #define FE_UPWARD 2 37 #define FE_DOWNWARD 3 39 38 40 extern float32_t float32_exp(float32_t); 41 extern float64_t float64_exp(float64_t); 39 #define fegetround() FE_TONEAREST 42 40 43 41 #endif 44 42 45 /** @}46 */
Note:
See TracChangeset
for help on using the changeset viewer.