clang-tidy: run modernize-deprecated-headers

This commit is contained in:
scribam 2021-03-13 13:13:22 +01:00
parent 28d7227ba5
commit ae47ff9875
3 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ extern "C" f32 fipr_asm(float* fn, float* fm);
#if SHIL_MODE==1 || SHIL_MODE==2
//only in structs we use the code :)
#include <math.h>
#include <cmath>
#include "types.h"
#include "shil.h"
#include "decoder.h"

View File

@ -2,9 +2,9 @@
Dreamcast serial port.
This is missing most of the functionality, but works for KOS (And thats all that uses it)
*/
#include <stdlib.h>
#include <cerrno>
#include <cstdlib>
#include <fcntl.h>
#include <errno.h>
#ifndef _WIN32
#include <unistd.h>
#include <sys/ioctl.h>

View File

@ -3,7 +3,7 @@
#ifdef _WIN32
#include "common.h"
#include <stddef.h>
#include <cstddef>
#include <windows.h>
#include <ntddscsi.h>