Add include for stdlib in YAZE test file

- Added `<cstdlib>` header to `yaze_test.cc`, enabling the use of standard library functions.
- This change enhances the functionality of the test suite by allowing for additional features from the C++ standard library.
This commit is contained in:
scawful
2025-09-28 18:12:04 -04:00
parent 831a8dcb82
commit baedab91c8

View File

@@ -5,6 +5,7 @@
#include <iostream>
#include <string>
#include <vector>
#include <cstdlib>
#include "absl/debugging/failure_signal_handler.h"
#include "absl/debugging/symbolize.h"