For some reason on macOS 12 the apple pointer is wrong. It's a pain
to debug code where the if and the true statement are on the same
line.
#endif
/* Darwin mach_header */
- if (info->dynamic) auxsize += sizeof(Word);
+ if (info->dynamic)
+ auxsize += sizeof(Word);
/* OK, now we know how big the client stack is */
stacksize =
ptr = (Addr*)client_SP;
/* --- mach_header --- */
- if (info->dynamic) *ptr++ = info->text;
+ if (info->dynamic)
+ *ptr++ = info->text;
/* --- client argc --- */
*ptr++ = (Addr)(argc + 1);