aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/big.h
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2010-07-19 19:03:15 +0200
committerSverker Eriksson <[email protected]>2010-07-23 12:20:04 +0200
commit649bc2686601d8c76c1aa76e62700067719e3312 (patch)
treefc53fa901b7839de8c5963d556e11efe41cc87da /erts/emulator/beam/big.h
parent9267b2dc792c0a7632a0dcdc0a49510eb13e465e (diff)
downloadotp-649bc2686601d8c76c1aa76e62700067719e3312.tar.gz
otp-649bc2686601d8c76c1aa76e62700067719e3312.tar.bz2
otp-649bc2686601d8c76c1aa76e62700067719e3312.zip
NIF 64-bit integer support
Diffstat (limited to 'erts/emulator/beam/big.h')
-rw-r--r--erts/emulator/beam/big.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/emulator/beam/big.h b/erts/emulator/beam/big.h
index 56f3be372a..25466cd3c2 100644
--- a/erts/emulator/beam/big.h
+++ b/erts/emulator/beam/big.h
@@ -152,6 +152,10 @@ byte* big_to_bytes(Eterm, byte*);
int term_to_Uint(Eterm, Uint*);
int term_to_UWord(Eterm, UWord*);
int term_to_Sint(Eterm, Sint*);
+#if HAVE_INT64
+int term_to_Uint64(Eterm, Uint64*);
+int term_to_Sint64(Eterm, Sint64*);
+#endif
Uint32 big_to_uint32(Eterm b);
int term_equals_2pow32(Eterm);