1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-19 09:43:20 +00:00

Fixed #include for FreeBSD

This commit is contained in:
Bryan Roe
2020-02-05 11:13:25 -08:00
parent 91ec72b34d
commit ee10dbeb17

View File

@@ -38,7 +38,12 @@ limitations under the License.
#if !defined( __APPLE__) && !defined(_FREEBSD)
#include <pty.h>
#else
#if defined(__APPLE__)
#include <util.h>
#else
#include <termios.h>
#include <libutil.h>
#endif
#endif
#endif