mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
50394064d7
It goes 5x faster than system() and it's safer too.
11 lines
355 B
C
11 lines
355 B
C
#ifndef COSMOPOLITAN_LIBC_COSMO_H_
|
|
#define COSMOPOLITAN_LIBC_COSMO_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
errno_t cosmo_once(_Atomic(uint32_t) *, void (*)(void));
|
|
int systemvpe(const char *, char *const[], char *const[]);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_COSMO_H_ */
|