mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-01 22:48:49 +00:00
This change undefines __linux__ and adds APIs like clock_settime(). The gosh darned getopt_long() API has been reintroduced, thanks to OpenBSD.
19 lines
551 B
C
19 lines
551 B
C
#ifndef _STDLIB_H
|
|
#define _STDLIB_H
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/termios.h"
|
|
#include "libc/fmt/conv.h"
|
|
#include "libc/limits.h"
|
|
#include "libc/mem/alg.h"
|
|
#include "libc/mem/alloca.h"
|
|
#include "libc/mem/mem.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/stdio/dprintf.h"
|
|
#include "libc/stdio/rand.h"
|
|
#include "libc/stdio/temp.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/sysv/consts/exit.h"
|
|
#include "third_party/getopt/getopt.h"
|
|
#include "third_party/musl/crypt.h"
|
|
#include "third_party/musl/rand48.h"
|
|
#endif /* _STDLIB_H */
|