2024-11-15 11:14:08 +02:00
|
|
|
#ifndef _YGGDRASIL_STDLIB_H
|
|
|
|
#define _YGGDRASIL_STDLIB_H 1
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
[[noreturn]] void abort(void);
|
|
|
|
|
2024-11-15 20:37:59 +02:00
|
|
|
// No long double implementation yet
|
|
|
|
long double strtold(const char *s, char **endptr);
|
|
|
|
long double strtold_l(const char *s, char **endptr, locale_t locale);
|
|
|
|
|
2024-11-15 11:14:08 +02:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|