diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-09-02 14:59:27 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-09-02 14:59:27 -0400 |
commit | 230df59a100ea7f1b8b74297fe28dcb567a283c6 (patch) | |
tree | fb9626bebff56bdea99791711814807c9f0dd06f /include | |
parent | 2a572eeba9d521400872e6588b3f709818a5d412 (diff) |
Switch base types to 64-bit versions
Diffstat (limited to 'include')
-rw-r--r-- | include/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/types.h b/include/types.h index afd4ff45..73a3e575 100644 --- a/include/types.h +++ b/include/types.h @@ -1,5 +1,5 @@ -typedef int lw_Basis_int; -typedef float lw_Basis_float; +typedef long long lw_Basis_int; +typedef double lw_Basis_float; typedef char* lw_Basis_string; struct __lws_0 { |