summaryrefslogtreecommitdiffstats
path: root/testsuites/support
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-10-13 13:08:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-10-13 13:08:12 +0000
commit7036ed00493d9b7103574118fd23cfca6ca266c7 (patch)
treed20e1a140c753c7fe41a39e3f1b463a3c1df7dd4 /testsuites/support
parent2011-10-13 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-7036ed00493d9b7103574118fd23cfca6ca266c7.tar.bz2
2011-10-13 Ralf Corsépius <ralf.corsepius@rtems.org>
* support/include/primode.h: New. * Makefile.am: Add support/include/primode.h
Diffstat (limited to 'testsuites/support')
-rw-r--r--testsuites/support/include/primode.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/testsuites/support/include/primode.h b/testsuites/support/include/primode.h
new file mode 100644
index 0000000000..f1efe7ea02
--- /dev/null
+++ b/testsuites/support/include/primode.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2011 by
+ * Ralf Corsépius, Ulm, Germany. All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software
+ * is freely granted, provided that this notice is preserved.
+ */
+
+/*
+ * Helper macro to print "time_t"
+ */
+
+#ifndef _PRIMODE_H
+#define _PRIMODE_H
+
+#include <inttypes.h>
+
+#ifndef SIZEOF_MODE_T
+#error "missing SIZEOF_MODE_T"
+#endif
+
+#if SIZEOF_MODE_T == 8
+#define PRIomode_t PRIo64
+#elif SIZEOF_MODE_T == 4
+#define PRIomode_t PRIo32
+#else
+#error "unsupported size of mode_t"
+#endif
+
+#endif