diff options
Diffstat (limited to 'plugins/MirOTR/libotr/inc/sys')
-rw-r--r-- | plugins/MirOTR/libotr/inc/sys/errno.h | 0 | ||||
-rw-r--r-- | plugins/MirOTR/libotr/inc/sys/ipc.h | 0 | ||||
-rw-r--r-- | plugins/MirOTR/libotr/inc/sys/socket.h | 0 | ||||
-rw-r--r-- | plugins/MirOTR/libotr/inc/sys/time.h | 2 | ||||
-rw-r--r-- | plugins/MirOTR/libotr/inc/sys/types.h | 49 | ||||
-rw-r--r-- | plugins/MirOTR/libotr/inc/sys/un.h | 0 |
6 files changed, 51 insertions, 0 deletions
diff --git a/plugins/MirOTR/libotr/inc/sys/errno.h b/plugins/MirOTR/libotr/inc/sys/errno.h new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/plugins/MirOTR/libotr/inc/sys/errno.h diff --git a/plugins/MirOTR/libotr/inc/sys/ipc.h b/plugins/MirOTR/libotr/inc/sys/ipc.h new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/plugins/MirOTR/libotr/inc/sys/ipc.h diff --git a/plugins/MirOTR/libotr/inc/sys/socket.h b/plugins/MirOTR/libotr/inc/sys/socket.h new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/plugins/MirOTR/libotr/inc/sys/socket.h diff --git a/plugins/MirOTR/libotr/inc/sys/time.h b/plugins/MirOTR/libotr/inc/sys/time.h new file mode 100644 index 0000000000..038cf1f387 --- /dev/null +++ b/plugins/MirOTR/libotr/inc/sys/time.h @@ -0,0 +1,2 @@ +
+#include <time.h>
\ No newline at end of file diff --git a/plugins/MirOTR/libotr/inc/sys/types.h b/plugins/MirOTR/libotr/inc/sys/types.h new file mode 100644 index 0000000000..5a3e51c4a9 --- /dev/null +++ b/plugins/MirOTR/libotr/inc/sys/types.h @@ -0,0 +1,49 @@ +
+#pragma once
+
+#include "..\unistd.h"
+
+
+#ifndef _TIME_T_DEFINED
+typedef long time_t;
+#define _TIME_T_DEFINED
+#endif
+
+
+#ifndef _INO_T_DEFINED
+
+typedef unsigned short _ino_t; /* i-node number (not used on DOS) */
+
+#if !__STDC__
+/* Non-ANSI name for compatibility */
+typedef unsigned short ino_t;
+#endif
+
+#define _INO_T_DEFINED
+#endif
+
+
+#ifndef _DEV_T_DEFINED
+
+typedef unsigned int _dev_t; /* device code */
+
+#if !__STDC__
+/* Non-ANSI name for compatibility */
+typedef unsigned int dev_t;
+#endif
+
+#define _DEV_T_DEFINED
+#endif
+
+
+#ifndef _OFF_T_DEFINED
+
+typedef long _off_t; /* file offset value */
+
+#if !__STDC__
+/* Non-ANSI name for compatibility */
+typedef long off_t;
+#endif
+
+#define _OFF_T_DEFINED
+#endif
diff --git a/plugins/MirOTR/libotr/inc/sys/un.h b/plugins/MirOTR/libotr/inc/sys/un.h new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/plugins/MirOTR/libotr/inc/sys/un.h |