summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2016-07-05 22:53:32 -0500
committerRich Felker <dalias@aerifal.cx>2016-07-06 00:21:19 -0400
commite1679ef1a1b7658dc7f8c9c97aeac7c7597c66a0 (patch)
treeb541fd583aafddbcc1df47f14bd07f1aaceb3d88 /arch
parentfaf69b9a73d09fafcbe4fd3007b8d8724293d8e1 (diff)
downloadmusl-e1679ef1a1b7658dc7f8c9c97aeac7c7597c66a0.tar.gz
remove or1k version of sem.h
It's identical to the generic version, after evaluating the endian preprocessor checks in the generic version.
Diffstat (limited to 'arch')
-rw-r--r--arch/or1k/bits/sem.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/or1k/bits/sem.h b/arch/or1k/bits/sem.h
deleted file mode 100644
index 0d916484..00000000
--- a/arch/or1k/bits/sem.h
+++ /dev/null
@@ -1,11 +0,0 @@
-struct semid_ds {
- struct ipc_perm sem_perm;
- time_t sem_otime;
- time_t __unused1;
- time_t sem_ctime;
- time_t __unused2;
- char __sem_nsems_pad[sizeof(time_t)-sizeof(short)];
- unsigned short sem_nsems;
- time_t __unused3;
- time_t __unused4;
-};