summaryrefslogtreecommitdiff
path: root/arch/aarch64/bits
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-07-29 18:17:43 -0400
committerRich Felker <dalias@aerifal.cx>2019-07-29 18:17:43 -0400
commitde5e56ce1626882dddfd5a7a900c0723af02d6ab (patch)
tree0314c4d030ebbe95b6adef3ae004191542b65d84 /arch/aarch64/bits
parent5bb4d717540ccb0a665fcd3c861b95ec3b5cac38 (diff)
downloadmusl-de5e56ce1626882dddfd5a7a900c0723af02d6ab.tar.gz
remove duplicates of new generic bits/sem.h
some of these were not exact duplicates, but had gratuitously different naming for padding, or omitted the endian checks because the arch is fixed-endian.
Diffstat (limited to 'arch/aarch64/bits')
-rw-r--r--arch/aarch64/bits/sem.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/aarch64/bits/sem.h b/arch/aarch64/bits/sem.h
deleted file mode 100644
index 5184eb59..00000000
--- a/arch/aarch64/bits/sem.h
+++ /dev/null
@@ -1,14 +0,0 @@
-struct semid_ds {
- struct ipc_perm sem_perm;
- time_t sem_otime;
- time_t sem_ctime;
-#if __BYTE_ORDER == __LITTLE_ENDIAN
- unsigned short sem_nsems;
- char __sem_nsems_pad[sizeof(long)-sizeof(short)];
-#else
- char __sem_nsems_pad[sizeof(long)-sizeof(short)];
- unsigned short sem_nsems;
-#endif
- long __unused3;
- long __unused4;
-};