audio_core: Add '#include <cstring>' to cubeb_sink and cubeb_input.cpp (#2232)

* audio_core: Add '#include <cstring>' to cubeb_sink and cubeb_input.cpp

This fixes a build failure encountered when compiling: https://pastebin.com/JQ4mbhyu

* Fix: License header
This commit is contained in:
asyync1024 2026-06-25 00:24:06 +05:30 committed by GitHub
parent 32fd435928
commit 93143bcb15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstring>
#include <utility>
#include <vector>
#include <cubeb/cubeb.h>

View file

@ -1,8 +1,9 @@
// Copyright 2018 Citra Emulator Project
// Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstdarg>
#include <cstring>
#include <mutex>
#include <vector>
#include <cubeb/cubeb.h>