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