error: multiple definition of 'GC_jmp_buf'
GCC 10 defaults to -fno-common, which means a linker error will now be reported. To fix this, use extern in header files when declaring global variables, and ensure each global is defined in exactly one C file.
resolves #11 msa build fails with GCC 10
error: multiple definition of 'GC_jmp_buf' GCC 10 defaults to -fno-common, which means a linker error will now be reported. To fix this, use extern in header files when declaring global variables, and ensure each global is defined in exactly one C file.