~peter-pearse/ubuntu/natty/zip/prop001

« back to all changes in this revision

Viewing changes to ttyio.c

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2005-03-23 20:12:12 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050323201212-jzsk2g6kn8v49mwp
Tags: 2.31-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  Copyright (c) 1990-1999 Info-ZIP.  All rights reserved.
 
2
  Copyright (c) 1990-2005 Info-ZIP.  All rights reserved.
3
3
 
4
 
  See the accompanying file LICENSE, version 1999-Oct-05 or later
 
4
  See the accompanying file LICENSE, version 2004-May-22 or later
5
5
  (the contents of which are also included in zip.h) for terms of use.
6
6
  If, for some reason, both of these files are missing, the Info-ZIP license
7
 
  also may be found at:  ftp://ftp.cdrom.com/pub/infozip/license.html
 
7
  also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
8
8
*/
9
9
/*---------------------------------------------------------------------------
10
10
 
54
54
#  define HAVE_TERMIOS_H
55
55
#endif
56
56
 
 
57
#ifdef __ATHEOS__
 
58
#  define HAVE_TERMIOS_H
 
59
#endif
 
60
 
57
61
#ifdef _POSIX_VERSION
58
62
#  ifndef USE_POSIX_TERMIOS
59
63
#    define USE_POSIX_TERMIOS  /* use POSIX style termio (termios) */
298
302
 
299
303
#if (defined(UNZIP) && !defined(FUNZIP))
300
304
 
301
 
#if (defined(UNIX) || defined(__BEOS__))
 
305
#if (defined(UNIX) || defined(__BEOS__) || defined(__ATHEOS__))
302
306
#ifdef MORE
303
307
 
304
308
/*
517
521
#else /* !HAVE_WORKING_GETCH */
518
522
 
519
523
 
520
 
#if (defined(UNIX) || defined(__MINT__) || defined(__BEOS__))
 
524
#if (defined(UNIX) || defined(__MINT__) || defined(__BEOS__) || defined(__ATHEOS__))
521
525
 
522
526
#ifndef _PATH_TTY
523
527
#  ifdef __MINT__
574
578
 
575
579
} /* end function getp() */
576
580
 
577
 
#endif /* UNIX || __MINT__ || __BEOS__ */
 
581
#endif /* UNIX || __MINT__ || __BEOS__ || __ATHEOS__ */
578
582
 
579
583
 
580
584