Remove dead code.
We haven't built any of this for years.
Test: treehugger
Change-Id: I3f8a85e9530af68587f47931d850eb60631a9481
diff --git a/libc/bionic/sys_sem.cpp b/libc/bionic/sys_sem.cpp
index 5e2a05c..058cfef 100644
--- a/libc/bionic/sys_sem.cpp
+++ b/libc/bionic/sys_sem.cpp
@@ -33,9 +33,8 @@
#include <unistd.h>
int semctl(int id, int num, int cmd, ...) {
-#if !defined(__LP64__) || defined(__mips__)
+#if !defined(__LP64__)
// Annoyingly, the kernel requires this for 32-bit but rejects it for 64-bit.
- // Mips64 is an exception to this, it requires the flag.
cmd |= IPC_64;
#endif
va_list ap;