extricate bits/sem.h from x32 time_t hack
[oweals/musl.git] / arch / riscv64 / bits / sem.h
1 struct semid_ds {
2         struct ipc_perm sem_perm;
3         time_t sem_otime;
4         time_t sem_ctime;
5         unsigned short sem_nsems;
6         char __sem_nsems_pad[sizeof(long)-sizeof(short)];
7         long __unused3;
8         long __unused4;
9 };