fix riscv64 signal.h namespace violations and ucontext API mismatches
[musl] / arch / riscv64 / bits / user.h
1 struct user_fpregs_struct {
2         double f[32];
3         unsigned int fcsr;
4 };
5
6 #define ELF_NGREG 32
7 typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
8 typedef struct user_fpregs_struct elf_fpregset_t;