extern.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Copyright (c) 1993-2002
  2. * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
  3. * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
  4. * Copyright (c) 1987 Oliver Laumann
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program (see the file COPYING); if not, write to the
  18. * Free Software Foundation, Inc.,
  19. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  20. *
  21. ****************************************************************
  22. * $Id$ FAU
  23. */
  24. #if !defined(__GNUC__) || __GNUC__ < 2
  25. #undef __attribute__
  26. #define __attribute__(x)
  27. #endif
  28. #if !defined (__P)
  29. # if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus)
  30. # define __P(protos) protos
  31. # else
  32. # define __P(protos) ()
  33. # endif
  34. #endif
  35. /* pty.c */
  36. extern int OpenPTY __P((char **));
  37. extern void InitPTY __P((int));