1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 20:02:37 +00:00

Patches that made it possible to compile on MacOS X as of Nov 13, 2011.

This commit is contained in:
Nick Briggs
2015-04-20 21:14:32 -07:00
parent de170a64d9
commit 5a702e808a
16 changed files with 67 additions and 7 deletions

View File

@@ -42,12 +42,15 @@ Unix Interface Communications
#include <setjmp.h>
#include "timeout.h"
#include <stdio.h>
#include <string.h> /* for strcpy etc. */
#ifdef OS4
#include <sys/termios.h>
#elif APOLLO
#include </sys5/usr/include/termios.h>
#elif LINUX
#include <termio.h>
#elif MACOSX
#include <termios.h>
#else
#include <sys/termio.h>
#endif /* OS4 */