diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-30 14:36:48 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-30 14:36:48 -0400 |
commit | d321a012ed51bf14ce6271198ccb29784efb7bd5 (patch) | |
tree | 797f3a4f11f0165ecee54b4870006be56399838d /include/types.h | |
parent | e0f5b40bb999cf78e9ad479d8004cf00ed7b3059 (diff) |
time type
Diffstat (limited to 'include/types.h')
-rw-r--r-- | include/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h index 09d88681..4e76243b 100644 --- a/include/types.h +++ b/include/types.h @@ -1,6 +1,9 @@ +#include <time.h> + typedef long long uw_Basis_int; typedef double uw_Basis_float; typedef char* uw_Basis_string; +typedef time_t uw_Basis_time; struct __uws_0 { }; @@ -21,3 +24,4 @@ typedef enum { SUCCESS, FATAL, BOUNDED_RETRY, UNLIMITED_RETRY } failure_kind; #define INTS_MAX 50 #define FLOATS_MAX 100 +#define TIMES_MAX 100 |