aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/abis/ironclad/msg.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/abis/ironclad/msg.h
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/abis/ironclad/msg.h')
-rw-r--r--lib/mlibc/abis/ironclad/msg.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/lib/mlibc/abis/ironclad/msg.h b/lib/mlibc/abis/ironclad/msg.h
deleted file mode 100644
index 5e890c0..0000000
--- a/lib/mlibc/abis/ironclad/msg.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef _ABIBITS_MSG_H
-#define _ABIBITS_MSG_H
-
-#include <sys/ipc.h>
-#include <bits/ansi/time_t.h>
-#include <bits/types.h>
-#include <abi-bits/pid_t.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#if defined(__i386__)
-typedef __mlibc_uint64 msglen_t;
-typedef __mlibc_uint64 msgqnum_t;
-#else
-typedef unsigned long msglen_t;
-typedef unsigned long msgqnum_t;
-#endif
-
-struct msqid_ds {
- struct ipc_perm msg_perm;
- time_t msg_stime;
- time_t msg_rtime;
- time_t msg_ctime;
- unsigned long msg_cbytes;
- msgqnum_t msg_qnum;
- msglen_t msg_qbytes;
- pid_t msg_lspid;
- pid_t msg_lrpid;
- unsigned long __unused[2];
-};
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _ABIBITS_MSG_H */
-