all: fix #includes for AIX, add a few AIX "implementation" files

This commit is contained in:
Ben Huntsman 2020-05-04 19:53:21 -07:00 committed by Russ Cox
parent f84d54a033
commit 5802b09e9d
9 changed files with 25 additions and 0 deletions

2
src/cmd/9term/AIX.c Normal file
View file

@ -0,0 +1,2 @@
#define TIOCSCTTY 0x540E
#include "bsdpty.c"

View file

@ -5,7 +5,9 @@
#include <errno.h>
#include <grp.h>
#include <termios.h>
#ifdef HAS_SYS_TERMIOS
#include <sys/termios.h>
#endif
#ifdef __linux__
#include <pty.h>
#endif

9
src/cmd/auxstats/AIX.c Normal file
View file

@ -0,0 +1,9 @@
#include <u.h>
#include <libc.h>
#include <bio.h>
#include "dat.h"
void (*statfn[])(int) =
{
0
};

View file

@ -9,7 +9,10 @@
*/
#include <u.h>
#include <sys/ioctl.h>
#include <termios.h>
#ifdef HAS_SYS_TERMIOS
#include <sys/termios.h>
#endif
#include <libc.h>
#include <draw.h>
#include <bio.h>

View file

@ -0,0 +1 @@
#include "mount-none.c"

View file

@ -2,7 +2,9 @@
#define NOPLAN9DEFINES
#include <libc.h>
#include <termios.h>
#ifdef HAS_SYS_TERMIOS
#include <sys/termios.h>
#endif
static int
rawx(int fd, int echoing)

1
src/libip/AIX.c Normal file
View file

@ -0,0 +1 @@
#include "none.c"

1
src/libmach/AIX.c Normal file
View file

@ -0,0 +1 @@
#include "nosys.c"