--- tai_data.c 2002/08/14 14:28:27 1.2
+++ tai_data.c 2005/01/24 11:04:07 1.3
@@ -36,6 +36,12 @@
#include "tai_p.h"
+/* ui64 representation of a full second in atto seconds, i.e. 10^(-18) atto-seconds */
+ui64_t tai_full_sec_in_asec = ui64_cons(0D,E0,B6,B3,A7,64,00,00);
+
+/* ui64 representation of a half second in atto seconds, i.e. (10^(-18)/2) atto-seconds */
+ui64_t tai_half_sec_in_asec = ui64_cons(06,F0,5B,59,D3,B2,00,00);
+
#define LCTIME_SIZE (sizeof(tai_locale_t) / sizeof(char *))
const tai_locale_t tai_locale = {
|