Changeset 84929b0 in mainline for uspace/lib/c/include/float.h
- Timestamp:
- 2018-08-29T20:06:00Z (6 years ago)
- Children:
- ed9043f7
- Parents:
- 184ff675
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-29 19:44:33)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-29 20:06:00)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/float.h
r184ff675 r84929b0 1 1 /* 2 * Copyright (c) 201 4 Martin Decky2 * 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 _FLOAT_H 30 #define _FLOAT_H 34 31 35 #ifndef LIBMATH_FMOD_H_ 36 #define LIBMATH_FMOD_H_ 32 // FIXME: <float.h> is freestanding. Just include the compiler-provided file. 37 33 38 # include <mathtypes.h>39 40 extern float32_t float32_fmod(float32_t, float32_t); 41 extern float64_t float64_fmod(float64_t, float64_t); 34 #define FLT_MANT_DIG __FLT_MANT_DIG__ 35 #define DBL_MANT_DIG __DBL_MANT_DIG__ 36 #define FLT_MAX_EXP __FLT_MAX_EXP__ 37 #define DBL_MAX_EXP __DBL_MAX_EXP__ 42 38 43 39 #endif 44 40 45 /** @}46 */
Note:
See TracChangeset
for help on using the changeset viewer.