mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
f554dd800e
It's now possible to compile Emacs using cosmocc. However we need to troubleshoot why it's event loop isn't working correctly at runtime.
15 lines
515 B
C
15 lines
515 B
C
#ifndef COSMOPOLITAN_LIBC_INTRIN_KPRINTF_H_
|
|
#define COSMOPOLITAN_LIBC_INTRIN_KPRINTF_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
void kprintf(const char *, ...);
|
|
size_t ksnprintf(char *, size_t, const char *, ...);
|
|
void kvprintf(const char *, va_list);
|
|
size_t kvsnprintf(char *, size_t, const char *, va_list);
|
|
bool kisdangerous(const void *);
|
|
void _klog(const char *, size_t);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_KPRINTF_H_ */
|