diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-17 13:48:40 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-17 13:48:40 -0800 |
commit | 8655065f8cec8b978d075adae1f65ffdfa9b51d8 (patch) | |
tree | 844ba738846c8856a77b8c6899e25676d7450200 /unix | |
parent | 5a877503d992de4c7e533fb1616d36ab2e6433e8 (diff) | |
parent | a9f5abd48c3710d0a79d5a7a9d64e1a8360b5de6 (diff) | |
download | micropython-8655065f8cec8b978d075adae1f65ffdfa9b51d8.tar.gz micropython-8655065f8cec8b978d075adae1f65ffdfa9b51d8.zip |
Merge pull request #184 from pfalcon/int-longlong
Python long int implementation using C long long
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 8327641213..daa18961c0 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -12,6 +12,7 @@ #define MICROPY_ENABLE_REPL_HELPERS (1) #define MICROPY_ENABLE_LEXER_UNIX (1) #define MICROPY_ENABLE_FLOAT (1) +#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_LONGLONG) // type definitions for the specific machine |