diff options
author | Adam Chlipala <adam@chlipala.net> | 2010-12-24 18:08:29 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2010-12-24 18:08:29 -0500 |
commit | 318b5ebe2d34aa2bd2496765695308976da9ea1e (patch) | |
tree | 47923dc6aff55d648cb135bf24609e6f6e566b95 /include/types.h | |
parent | deeab26120507ee945ab8ce95fe313fcd23b7b13 (diff) |
Changed uw_Basis_time to store microseconds
Diffstat (limited to 'include/types.h')
-rw-r--r-- | include/types.h | 5 |
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; |