Silence some warnings/LTO issues

This commit is contained in:
libretroadmin 2023-02-19 10:21:37 +01:00
parent 4d305bf3e8
commit 1d9cb216ca
4 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,7 @@
#include "wayland_common.h"
#include "../../frontend/frontend_driver.h"
#include "../../verbosity.h"
#define SPLASH_SHM_NAME "retroarch-wayland-vk-splash"

View File

@ -19,7 +19,6 @@
#include <stddef.h>
#include <libretro.h>
#include <retro_common_api.h>
#include <boolean.h>

View File

@ -89,7 +89,7 @@ static void linux_terminal_restore_signal(int sig)
bool linux_terminal_disable_input(void)
{
struct sigaction sa = {{0}};
struct sigaction sa = {0};
/* Avoid accidentally typing stuff. */
if (!isatty(0))

View File

@ -49,6 +49,8 @@
#include "../defaults.h"
#include "../command.h"
#include "../configuration.h"
#include "../core.h"
#include "../gfx/video_driver.h"
#include "../paths.h"
#include "../msg_hash.h"
#include "../runloop.h"