2023-06-18 07:55:09 +00:00
|
|
|
#ifndef _STDLIB_H
|
|
|
|
#define _STDLIB_H
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "libc/calls/calls.h"
|
|
|
|
#include "libc/calls/termios.h"
|
2020-12-09 23:04:54 +00:00
|
|
|
#include "libc/fmt/conv.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "libc/limits.h"
|
|
|
|
#include "libc/mem/alg.h"
|
2023-06-18 11:02:01 +00:00
|
|
|
#include "libc/mem/alloca.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/mem/mem.h"
|
|
|
|
#include "libc/runtime/runtime.h"
|
2023-06-17 17:13:50 +00:00
|
|
|
#include "libc/stdio/dprintf.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "libc/stdio/rand.h"
|
2023-11-17 00:34:53 +00:00
|
|
|
#include "libc/stdlib.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "libc/str/str.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#include "libc/sysv/consts/exit.h"
|
2023-09-06 10:54:42 +00:00
|
|
|
#include "libc/temp.h"
|
2022-10-11 00:52:41 +00:00
|
|
|
#include "third_party/musl/crypt.h"
|
|
|
|
#include "third_party/musl/rand48.h"
|
2023-06-18 07:55:09 +00:00
|
|
|
#endif /* _STDLIB_H */
|