home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-src.tgz / tar.out / fsf / texinfo / info / termdep.h < prev    next >
Text File  |  1996-09-28  |  2KB  |  70 lines

  1. /* termdep.h -- System things that terminal.c depends on. */
  2.  
  3. /* This file is part of GNU Info, a program for reading online documentation
  4.    stored in Info format.
  5.  
  6.    Copyright (C) 1993 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21.  
  22.    Written by Brian Fox (bfox@ai.mit.edu). */
  23.  
  24. #if !defined (_TERMDEP_H_)
  25. #  define _TERMDEP_H_
  26.  
  27. #if defined (HAVE_SYS_FCNTL_H)
  28. #  include <sys/fcntl.h>
  29. #else
  30. #  include <fcntl.h>
  31. #endif /* !HAVE_SYS_FCNTL_H */
  32.  
  33. #if defined (HAVE_TERMIO_H)
  34. #  include <termio.h>
  35. #  include <string.h>
  36. #  if defined (HAVE_SYS_PTEM_H)
  37. #    if defined (M_UNIX) || !defined (M_XENIX)
  38. #      include <sys/stream.h>
  39. #      include <sys/ptem.h>
  40. #      undef TIOCGETC
  41. #    else /* M_XENIX */
  42. #      define tchars tc
  43. #    endif /* M_XENIX */
  44. #  endif /* HAVE_SYS_PTEM_H */
  45. #else /* !HAVE_TERMIO_H */
  46. #  if defined (HAVE_SYS_FILE_H)
  47. #    include <sys/file.h>
  48. #  endif /* HAVE_SYS_FILE_H */
  49. #  include <sgtty.h>
  50. #  include <strings.h>
  51. #endif /* !HAVE_TERMIO_H */
  52.  
  53. #if defined (HAVE_SYS_TTOLD_H)
  54. #  include <sys/ttold.h>
  55. #endif /* HAVE_SYS_TTOLD_H */
  56.  
  57. #if !defined (HAVE_STRCHR)
  58. #  undef strchr
  59. #  undef strrchr
  60. #  define strchr index
  61. #  define strrchr rindex
  62. #endif /* !HAVE_STRCHR */
  63.  
  64. #if !defined (HAVE_MEMCPY)
  65. #undef memcpy
  66. #define memcpy(dest, source, count) bcopy(source, dest, count)
  67. #endif /* !HAVE_MEMCPY */
  68.  
  69. #endif /* _TERMDEP_H_ */
  70.