mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
22 lines
515 B
C
22 lines
515 B
C
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_ASMDOWN_H_
|
|
#define COSMOPOLITAN_TOOL_BUILD_LIB_ASMDOWN_H_
|
|
#include "tool/build/lib/javadown.h"
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct Asmdown {
|
|
struct AsmdownSymbols {
|
|
size_t n;
|
|
struct AsmdownSymbol {
|
|
int line;
|
|
char *name;
|
|
bool is_alias;
|
|
struct Javadown *javadown;
|
|
} * p;
|
|
} symbols;
|
|
};
|
|
|
|
struct Asmdown *ParseAsmdown(const char *, size_t);
|
|
void FreeAsmdown(struct Asmdown *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_ASMDOWN_H_ */
|