GCC compilation fixes.

This commit is contained in:
Maxim Poliakovski 2022-05-21 15:01:50 +02:00
parent f93df3b5c3
commit 06001a778f
2 changed files with 6 additions and 1 deletions

View File

@ -28,6 +28,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <memaccess.h>
#include <cinttypes>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <map>

View File

@ -25,6 +25,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <loguru.hpp>
#include <cinttypes>
#include <cstring>
#include <memory>
bool CharIoNull::rcv_char_available()
@ -46,8 +47,11 @@ int CharIoNull::rcv_char(uint8_t *c)
//======================== STDIO character I/O backend ========================
#ifndef _WIN32
#include<signal.h>
#include <signal.h>
#include <stdio.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/select.h>
#include <termios.h>
#include <unistd.h>