Revert "A workaround for macOS linker"

Unnecessary after "sim: Add -fno-common to KERNEL ARCHCPUFLAGS"

This reverts commit cc90d586c0.
This commit is contained in:
YAMAMOTO Takashi 2020-02-03 14:18:17 +09:00 committed by Xiang Xiao
parent 2984fb9602
commit 342b56ae8b
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@
* protection to simply disable pre-emption when accessing this list.
*/
FAR struct binfmt_s *g_binfmts = NULL;
FAR struct binfmt_s *g_binfmts;
/****************************************************************************
* Private Functions

View file

@ -64,5 +64,5 @@
#else
/* Otherwise, the user heap data structures are in common .bss */
struct mm_heap_s g_mmheap = {};
struct mm_heap_s g_mmheap;
#endif