Add spaces after uses of _Atomic() to prevent it from expanding as a prefix to the following identifier.

e.g.
_Atomic(uintptr_t)x = 0; -> uintptr_tx = 0;
static _Atomic(uintptr_t)mi_segment_map[MI_SEGMENT_MAP_WSIZE]; -> static uintptr_tmi_segment_map[MI_SEGMENT_MAP_WSIZE];
This commit is contained in:
Nick Edwards 2021-08-09 18:33:39 +01:00
parent 080cffe064
commit 9461de1867
2 changed files with 2 additions and 2 deletions