aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/global.h
diff options
context:
space:
mode:
authorSebastien Merle <[email protected]>2018-01-23 20:14:58 +0100
committerSebastien Merle <[email protected]>2018-01-24 17:22:37 +0100
commit2207e5248bbaf2961f179ddcc1dabbab292ca3c9 (patch)
tree46d15d33d43882e5446bb1a6a89857fc2ce6d280 /erts/emulator/beam/global.h
parent58632af80fd43955ec58c021e5c0d04caa1840de (diff)
downloadotp-2207e5248bbaf2961f179ddcc1dabbab292ca3c9.tar.gz
otp-2207e5248bbaf2961f179ddcc1dabbab292ca3c9.tar.bz2
otp-2207e5248bbaf2961f179ddcc1dabbab292ca3c9.zip
Add missing extern storage class in global.h header
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r--erts/emulator/beam/global.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h
index 86e2c351af..ebe673cd86 100644
--- a/erts/emulator/beam/global.h
+++ b/erts/emulator/beam/global.h
@@ -948,8 +948,8 @@ void erts_update_ranges(BeamInstr* code, Uint size);
void erts_remove_from_ranges(BeamInstr* code);
UWord erts_ranges_sz(void);
void erts_lookup_function_info(FunctionInfo* fi, BeamInstr* pc, int full_info);
-ErtsLiteralArea** erts_dump_lit_areas;
-Uint erts_dump_num_lit_areas;
+extern ErtsLiteralArea** erts_dump_lit_areas;
+extern Uint erts_dump_num_lit_areas;
/* break.c */
void init_break_handler(void);