mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
70 lines
1.7 KiB
C
70 lines
1.7 KiB
C
#ifndef _COSMO_H
|
|
#define _COSMO_H
|
|
|
|
#ifdef _COSMO_SOURCE
|
|
#define COSMO_ALREADY_DEFINED
|
|
#else
|
|
#define _COSMO_SOURCE
|
|
#endif
|
|
|
|
/**
|
|
* @fileoverview Curated Cosmopolitan non-POSIX C Libraries
|
|
*
|
|
* Users of the `cosmocc` toolchain can say, for example:
|
|
*
|
|
* #include <cosmo.h>
|
|
*
|
|
* main() {
|
|
* ShowCrashReports();
|
|
* kprintf("hello world\n");
|
|
* }
|
|
*
|
|
* Which will define the best stuff from Cosmopolitan Libc, which
|
|
* includes core runtime services, third party libraries we've curated,
|
|
* as well as internal libraries we made that are good enough to share.
|
|
*
|
|
* @see tool/cosmocc
|
|
*/
|
|
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/pledge.h"
|
|
#include "libc/calls/struct/timespec.h"
|
|
#include "libc/calls/struct/timeval.h"
|
|
#include "libc/cosmo.h"
|
|
#include "libc/dce.h"
|
|
#include "libc/elf/elf.h"
|
|
#include "libc/fmt/itoa.h"
|
|
#include "libc/fmt/leb128.h"
|
|
#include "libc/intrin/bsf.h"
|
|
#include "libc/intrin/bsr.h"
|
|
#include "libc/intrin/dll.h"
|
|
#include "libc/intrin/kprintf.h"
|
|
#include "libc/intrin/likely.h"
|
|
#include "libc/intrin/weaken.h"
|
|
#include "libc/mem/critbit0.h"
|
|
#include "libc/mem/gc.h"
|
|
#include "libc/mem/leaks.h"
|
|
#include "libc/nexgen32e/rdtsc.h"
|
|
#include "libc/nexgen32e/stackframe.h"
|
|
#include "libc/nexgen32e/x86feature.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/runtime/stack.h"
|
|
#include "libc/runtime/symbols.internal.h"
|
|
#include "libc/stdio/append.h"
|
|
#include "libc/stdio/rand.h"
|
|
#include "libc/str/blake2.h"
|
|
#include "libc/str/highwayhash64.h"
|
|
#include "libc/str/slice.h"
|
|
#include "libc/str/thompike.h"
|
|
#include "libc/str/unicode.h"
|
|
#include "libc/str/utf16.h"
|
|
#include "libc/sysv/errfuns.h"
|
|
#include "net/http/http.h"
|
|
|
|
#ifdef COSMO_ALREADY_DEFINED
|
|
#undef COSMO_ALREADY_DEFINED
|
|
#else
|
|
#undef _COSMO_SOURCE
|
|
#endif
|
|
|
|
#endif /* _COSMO_H */
|