diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-05-11 16:17:49 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-05-11 16:17:49 +0200 |
commit | 8d8d8c3817988a50ed1e058e73b247ce0a8c3616 (patch) | |
tree | 1cffa273ecf4c464c045b866319af690cf832412 /erts/emulator/beam/erl_nif.h | |
parent | e1ad5319f0b76460d9147ef04640c469f5a180d6 (diff) | |
download | otp-8d8d8c3817988a50ed1e058e73b247ce0a8c3616.tar.gz otp-8d8d8c3817988a50ed1e058e73b247ce0a8c3616.tar.bz2 otp-8d8d8c3817988a50ed1e058e73b247ce0a8c3616.zip |
erts: Add enif_snprintf
* Add the capability to format erlang terms to a char buffer in nifs.
* Bump NIF version to 2.11
Diffstat (limited to 'erts/emulator/beam/erl_nif.h')
-rw-r--r-- | erts/emulator/beam/erl_nif.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_nif.h b/erts/emulator/beam/erl_nif.h index 3964f7f679..468f5cf5ec 100644 --- a/erts/emulator/beam/erl_nif.h +++ b/erts/emulator/beam/erl_nif.h @@ -50,9 +50,10 @@ ** 2.8: 18.0 add enif_has_pending_exception ** 2.9: 18.2 enif_getenv ** 2.10: Time API +** 2.11: 19.0 enif_snprintf */ #define ERL_NIF_MAJOR_VERSION 2 -#define ERL_NIF_MINOR_VERSION 10 +#define ERL_NIF_MINOR_VERSION 11 /* * The emulator will refuse to load a nif-lib with a major version |