Merge pull request #114072 from Fahien/include-cstdlib

Add missing `cstdlib` include for `EXIT_SUCCESS` and `free`
This commit is contained in:
Rémi Verschelde 2025-12-16 11:27:13 +01:00
commit d08fbbcc0d
No known key found for this signature in database
GPG Key ID: C3336907360768E1
2 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@
#include "core/math/math_funcs.h"
#include <zlib.h> // Should come before including tinyexr.
#include <cstdlib>
#include "thirdparty/tinyexr/tinyexr.h"

View File

@ -36,6 +36,8 @@
#include "core/templates/self_list.h"
#include "scene/main/scene_tree_fti.h"
#include <cstdlib>
#undef Window
class ArrayMesh;