getptmfd() and fdforkpty() compat.

This commit is contained in:
Nicholas Marriott
2017-04-20 19:09:07 +01:00
parent 7934e7a6b5
commit 9420758127
5 changed files with 54 additions and 4 deletions

View File

@ -18,6 +18,7 @@
#define COMPAT_H
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/uio.h>
#include <limits.h>
@ -283,9 +284,15 @@ int b64_ntop(const char *, size_t, char *, size_t);
int b64_pton(const char *, u_char *, size_t);
#endif
#ifndef HAVE_FDFORKPTY
/* fdforkpty.c */
int getptmfd(void);
pid_t fdforkpty(int, int *, char *, struct termios *,
struct winsize *);
#endif
#ifndef HAVE_FORKPTY
/* forkpty.c */
#include <sys/ioctl.h>
pid_t forkpty(int *, char *, struct termios *, struct winsize *);
#endif