XboxDev / nxdk

The cross-platform, open-source SDK to develop for original Xbox: *new* xdk
437 stars 66 forks source link

vcruntime: Fix warning caused by including stdlib_ext_.h #613

Closed thrimbor closed 2 years ago

thrimbor commented 2 years ago

purecall.c was including the extension header stdlib_ext_.h instead of the proper stdlib.h, causing a warning due to the former's use of aligned_alloc, which is declared in the latter.

Fixes https://github.com/XboxDev/nxdk/issues/612