diff options
author | John Högberg <[email protected]> | 2019-08-27 11:31:14 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2019-08-27 11:31:14 +0200 |
commit | 5abb822ee402f008b3fdd2d863ffac93bbe6bc09 (patch) | |
tree | 3cdebe12d79d5a2c9b2105eabed1756a95f81a89 | |
parent | db00e5033b964471b378f872e0f2f64e82da83be (diff) | |
parent | fdc24dff09c8e6dfa6c2651d1179fb0d635d2faa (diff) | |
download | otp-5abb822ee402f008b3fdd2d863ffac93bbe6bc09.tar.gz otp-5abb822ee402f008b3fdd2d863ffac93bbe6bc09.tar.bz2 otp-5abb822ee402f008b3fdd2d863ffac93bbe6bc09.zip |
Merge branch 'maint'
* maint:
erts: Add missing prototype
-rw-r--r-- | erts/emulator/beam/erl_binary.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_binary.h b/erts/emulator/beam/erl_binary.h index 66b59ef1a3..f5a35f2222 100644 --- a/erts/emulator/beam/erl_binary.h +++ b/erts/emulator/beam/erl_binary.h @@ -311,6 +311,7 @@ ERTS_GLB_INLINE void erts_free_aligned_binary_bytes(byte* buf); ERTS_GLB_INLINE void erts_free_aligned_binary_bytes_extra(byte* buf, ErtsAlcType_t); ERTS_GLB_INLINE Binary *erts_bin_drv_alloc_fnf(Uint size); ERTS_GLB_INLINE Binary *erts_bin_drv_alloc(Uint size); +ERTS_GLB_INLINE Binary *erts_bin_nrml_alloc_fnf(Uint size); ERTS_GLB_INLINE Binary *erts_bin_nrml_alloc(Uint size); ERTS_GLB_INLINE Binary *erts_bin_realloc_fnf(Binary *bp, Uint size); ERTS_GLB_INLINE Binary *erts_bin_realloc(Binary *bp, Uint size); |