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,21 +5,21 @@
struct __darwin_ucontext;
struct __darwin_siginfo;
struct sigset$xnu {
struct sigset_xnu {
uint32_t sig[1];
};
struct sigaction$xnu_in {
struct sigaction_xnu_in {
intptr_t sa_handler;
void (*sa_restorer)(void *, int, int, const struct __darwin_siginfo *,
const struct __darwin_ucontext *);
struct sigset$xnu sa_mask;
struct sigset_xnu sa_mask;
int32_t sa_flags;
};
struct sigaction$xnu_out {
struct sigaction_xnu_out {
intptr_t sa_handler;
struct sigset$xnu sa_mask;
struct sigset_xnu sa_mask;
int32_t sa_flags;
};