Remove dollars from system call support symbols

This commit is contained in:
Justine Tunney 2021-02-03 19:35:29 -08:00
parent a8d7195777
commit a37960a3af
743 changed files with 1380 additions and 2016 deletions

View file

@ -5,7 +5,7 @@
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
struct termios$xnu {
struct termios_xnu {
uint64_t c_iflag;
uint64_t c_oflag;
uint64_t c_cflag;
@ -15,7 +15,7 @@ struct termios$xnu {
uint64_t c_ospeed;
};
struct termios$bsd {
struct termios_bsd {
uint32_t c_iflag;
uint32_t c_oflag;
uint32_t c_cflag;
@ -27,8 +27,8 @@ struct termios$bsd {
union metatermios {
struct termios linux;
struct termios$xnu xnu;
struct termios$bsd bsd;
struct termios_xnu xnu;
struct termios_bsd bsd;
};
COSMOPOLITAN_C_END_