From 90ca02568835b140b0e59de496a7f1f1d3513f67 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 28 May 2008 20:44:47 +0000 Subject: [PATCH] Removed prototypes for openpty() (which lives in pty.h) and forkpty() (which we don't implement ATM). Why do we have a header that declares stuff that is for the most part not supported? git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25684 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/compatibility/bsd/libutil.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/headers/compatibility/bsd/libutil.h b/headers/compatibility/bsd/libutil.h index 909930061f..ee1ff01691 100644 --- a/headers/compatibility/bsd/libutil.h +++ b/headers/compatibility/bsd/libutil.h @@ -79,10 +79,6 @@ int login_tty(int _fd); int logout(const char *_line); void logwtmp(const char *_line, const char *_name, const char *_host); void trimdomain(char *_fullhost, int _hostsize); -int openpty(int *_amaster, int *_aslave, char *_name, - struct termios *_termp, struct winsize *_winp); -int forkpty(int *_amaster, char *_name, - struct termios *_termp, struct winsize *_winp); int humanize_number(char *_buf, size_t _len, int64_t _number, const char *_suffix, int _scale, int _flags); const char *uu_lockerr(int _uu_lockresult);