mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
1966369e8e
- Fix regression with `%lu` - Added some more headers witnessed in the wild - Added `-M INT` option to redbean to tune max payload size - Work around InfoZIP 256 character limit on comment line size
22 lines
587 B
C
22 lines
587 B
C
#ifndef COSMOPOLITAN_LIBC_STR_TPENC_H_
|
|
#define COSMOPOLITAN_LIBC_STR_TPENC_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
uint64_t tpenc(int32_t) pureconst;
|
|
|
|
#ifndef __STRICT_ANSI__
|
|
#define tpenc(CODE) \
|
|
({ \
|
|
long Edi, Buf; \
|
|
asm("call\ttpenc" \
|
|
: "=a"(Buf), "=D"(Edi) \
|
|
: "1"((int)(CODE)) \
|
|
: "rcx", "rdx", "cc"); \
|
|
Buf; \
|
|
})
|
|
#endif
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_STR_TPENC_H_ */
|