mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
15 lines
424 B
C
15 lines
424 B
C
|
#ifndef COSMOPOLITAN_LIBC_RUNTIME_METALPRINTF_H_
|
||
|
#define COSMOPOLITAN_LIBC_RUNTIME_METALPRINTF_H_
|
||
|
COSMOPOLITAN_C_START_
|
||
|
|
||
|
void MetalPrintf(const char *, ...);
|
||
|
|
||
|
#define MetalPrintf(FMT, ...) \
|
||
|
do { \
|
||
|
const char StackFmt[] = FMT; \
|
||
|
MetalPrintf(StackFmt, ##__VA_ARGS__); \
|
||
|
} while (0)
|
||
|
|
||
|
COSMOPOLITAN_C_END_
|
||
|
#endif /* COSMOPOLITAN_LIBC_RUNTIME_METALPRINTF_H_ */
|