1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 19:54:57 +08:00

Merge e7cd4c506e43337de10d7775a28a8f4db748b8e1 into 69e0372cf0d3796e84ce9a09aff1d74496f68720

This commit is contained in:
chicsa 2022-03-17 17:51:49 +01:00 committed by GitHub
commit b712a9c554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#if defined(__linux__)
#if (defined(__linux__) || defined(__unix__))
/*
* Copyright (c) 2014 Craig Lilley <cralilley@gmail.com>

View File

@ -27,7 +27,7 @@ void loop()
#include "serial/serial.h"
#if defined(__linux__)
#if (defined(__linux__) || defined(__unix__))
#include <pty.h>
#else
#include <util.h>