Changeset: 8ec354723426 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8ec354723426 Modified Files: clients/src/mapiclient/mclient.mx Branch: default Log Message:
always use 64-bit type (lng) for timer (microseconds) diffs (22 lines): diff -r 91a33e3cf794 -r 8ec354723426 clients/src/mapiclient/mclient.mx --- a/clients/src/mapiclient/mclient.mx Fri Jul 16 13:28:44 2010 +0200 +++ b/clients/src/mapiclient/mclient.mx Fri Jul 16 13:29:59 2010 +0200 @@ -188,16 +188,8 @@ #define DEFWIDTH 80 -/* try to use a 64 bit integer for the timer, but fall back to plain long */ -#ifdef HAVE_LONG_LONG -typedef long long timertype; -#else -#ifdef HAVE___INT64 -typedef __int64 timertype; -#else -typedef long timertype; -#endif -#endif +/* use a 64 bit integer for the timer */ +typedef lng timertype; static timertype t0, t1; /* used for timing */ static char *mark, *mark2; _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
