From 30e49544d57596757fed7b4fee431964c875de6c Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 30 Sep 2011 02:31:25 +0000 Subject: =?UTF-8?q?2011-09-30=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * support/include/pritime.h: New. * Makefile.am: Add support/include/pritime.h --- testsuites/support/include/pritime.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testsuites/support/include/pritime.h (limited to 'testsuites/support') diff --git a/testsuites/support/include/pritime.h b/testsuites/support/include/pritime.h new file mode 100644 index 0000000000..97117b94fa --- /dev/null +++ b/testsuites/support/include/pritime.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 _PRITIME_H +#define _PRITIME_H + +#include + +#ifndef SIZEOF_TIME_T +#error "missing SIZEOF_TIME_T" +#endif + +#if SIZEOF_TIME_T == 8 +#define PRIdtime_t PRId64 +#elif SIZEOF_TIME_T == 4 +#define PRIdtime_t PRId32 +#else +#error "unsupported size of time_t" +#endif + +#endif -- cgit v1.2.3