1157184Sache/* Copyright (c) 1993-2002
2157184Sache *      Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
3157184Sache *      Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
4157184Sache * Copyright (c) 1987 Oliver Laumann
5157184Sache *
6157184Sache * This program is free software; you can redistribute it and/or modify
7157184Sache * it under the terms of the GNU General Public License as published by
8157184Sache * the Free Software Foundation; either version 2, or (at your option)
9157184Sache * any later version.
10157184Sache *
11157184Sache * This program is distributed in the hope that it will be useful,
12157184Sache * but WITHOUT ANY WARRANTY; without even the implied warranty of
13157184Sache * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14157184Sache * GNU General Public License for more details.
15157184Sache *
16157184Sache * You should have received a copy of the GNU General Public License
17157184Sache * along with this program (see the file COPYING); if not, write to the
18157184Sache * Free Software Foundation, Inc.,
19157184Sache * 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
20157184Sache *
21157184Sache ****************************************************************
22157184Sache * $Id: extern.h,v 1.18 1994/05/31 12:31:57 mlschroe Exp $ FAU
23157184Sache */
24157184Sache
25157184Sache#if !defined(__GNUC__) || __GNUC__ < 2
26157184Sache#undef __attribute__
27157184Sache#define __attribute__(x)
28157184Sache#endif
29157184Sache
30157184Sache/* pty.c */
31157184Sacheextern int   OpenPTY __P((char **));
32157184Sacheextern void  InitPTY __P((int));
33157184Sache
34