prime/libc/float.h
Luke Street 00c77e6195 Runtime/math matches; better libc headers
Former-commit-id: bef7db17486213f77de865dfbec529ae23b394a4
2022-08-25 23:46:24 -04:00

15 lines
158 B
C

#ifndef _FLOAT_H_
#define _FLOAT_H_
#ifdef __cplusplus
extern "C" {
#endif
#define FLT_EPSILON 1.1920928955078125e-07f
#ifdef __cplusplus
}
#endif
#endif