summaryrefslogtreecommitdiff
path: root/include/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/types.h b/include/types.h
index 01776213..37fcfb7f 100644
--- a/include/types.h
+++ b/include/types.h
@@ -9,7 +9,10 @@ typedef long long uw_Basis_int;
typedef double uw_Basis_float;
typedef char* uw_Basis_string;
typedef char uw_Basis_char;
-typedef time_t uw_Basis_time;
+typedef struct {
+ time_t seconds;
+ unsigned microseconds;
+} uw_Basis_time;
typedef struct {
size_t size;
char *data;