summaryrefslogtreecommitdiff
path: root/include/libc/float.h
blob: ee8b96b64b6e66cf57da480f7b97092dcd4d93b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _FLOAT_H_
#define _FLOAT_H_

#ifdef __cplusplus
extern "C" {
#endif

#define FLT_MAX 3.402823466e+38f
#define FLT_EPSILON 1.192092896e-07f
#define FLT_MIN 1.175494351e-38f

#define DBL_EPSILON 1.1920929e-07

#ifdef __cplusplus
}
#endif

#endif