mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
14 lines
372 B
C
14 lines
372 B
C
#ifndef Py_LIMITED_API
|
|
#ifndef PY_NO_SHORT_FLOAT_REPR
|
|
COSMOPOLITAN_C_START_
|
|
|
|
double _Py_dg_strtod(const char *str, char **ptr);
|
|
char * _Py_dg_dtoa(double d, int mode, int ndigits,
|
|
int *decpt, int *sign, char **rve);
|
|
void _Py_dg_freedtoa(char *s);
|
|
double _Py_dg_stdnan(int sign);
|
|
double _Py_dg_infinity(int sign);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif
|
|
#endif
|