diff options
author | John Högberg <[email protected]> | 2019-08-27 11:30:59 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2019-08-27 11:30:59 +0200 |
commit | fdc24dff09c8e6dfa6c2651d1179fb0d635d2faa (patch) | |
tree | c790664edecc0a12041583def6a4303f484fae12 | |
parent | dcc3ff74d5932a1aadd39ddf91cb480ff122da7b (diff) | |
parent | 825f4eee8ddd478a619f26f1dfe50a67ac946012 (diff) | |
download | otp-fdc24dff09c8e6dfa6c2651d1179fb0d635d2faa.tar.gz otp-fdc24dff09c8e6dfa6c2651d1179fb0d635d2faa.tar.bz2 otp-fdc24dff09c8e6dfa6c2651d1179fb0d635d2faa.zip |
Merge branch 'john/erts/missing-prototype-erts_bin_nrml_alloc_fnf' into maint
* john/erts/missing-prototype-erts_bin_nrml_alloc_fnf:
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); |