2023-11-17 00:34:53 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_STDLIB_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_STDLIB_H_
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2024-01-09 09:26:03 +00:00
|
|
|
char *fcvt(double, int, int *, int *) libcesque;
|
|
|
|
char *ecvt(double, int, int *, int *) libcesque;
|
|
|
|
char *gcvt(double, int, char *) libcesque;
|
2023-11-17 00:34:53 +00:00
|
|
|
|
2024-02-23 15:39:44 +00:00
|
|
|
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || \
|
|
|
|
defined(_COSMO_SOURCE)
|
|
|
|
void setkey(const char *) libcesque;
|
|
|
|
#endif
|
|
|
|
|
2024-05-27 09:12:27 +00:00
|
|
|
void quick_exit(int) wontreturn;
|
|
|
|
int at_quick_exit(void (*)(void));
|
|
|
|
|
2023-11-17 00:34:53 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_STDLIB_H_ */
|