aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/sys
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-02-13 13:42:57 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-02-19 09:06:22 +0100
commit9d4a6534fb218f41ac916aa5dcdb0ce1b55dc245 (patch)
tree7857a729f4557f332cf679020b4cceed78505249 /newlib/libc/sys
parent30782f7de4936bbc4c2e666cbaf587039c895fd3 (diff)
downloadnewlib-9d4a6534fb218f41ac916aa5dcdb0ce1b55dc245.zip
newlib-9d4a6534fb218f41ac916aa5dcdb0ce1b55dc245.tar.gz
newlib-9d4a6534fb218f41ac916aa5dcdb0ce1b55dc245.tar.bz2
Move RTEMS and XMK specific type definitions
Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
Diffstat (limited to 'newlib/libc/sys')
-rw-r--r--newlib/libc/sys/rtems/include/machine/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/newlib/libc/sys/rtems/include/machine/types.h b/newlib/libc/sys/rtems/include/machine/types.h
index ab52e47..c550873 100644
--- a/newlib/libc/sys/rtems/include/machine/types.h
+++ b/newlib/libc/sys/rtems/include/machine/types.h
@@ -62,6 +62,12 @@ typedef __lwpid_t lwpid_t; /* Thread ID (a.k.a. LWP) */
#define _LWPID_T_DECLARED
#endif
+#if ___int64_t_defined
+typedef __uint64_t u_quad_t;
+typedef __int64_t quad_t;
+typedef quad_t * qaddr_t;
+#endif
+
#ifndef _RLIM_T_DECLARED
typedef __rlim_t rlim_t; /* resource limit */
#define _RLIM_T_DECLARED