mirror of
git://git.musl-libc.org/musl
synced 2025-01-11 00:59:46 +00:00
28637bc407
having preprocessor conditionals on byte order in the bits headers for fixed-endian archs is confusing at best. remove them.
12 lines
232 B
C
12 lines
232 B
C
struct semid_ds {
|
|
struct ipc_perm sem_perm;
|
|
time_t sem_otime;
|
|
long __unused1;
|
|
time_t sem_ctime;
|
|
long __unused2;
|
|
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
unsigned short sem_nsems;
|
|
long __unused3;
|
|
long __unused4;
|
|
};
|