home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip21.zip / amiga / osdep.h < prev    next >
C/C++ Source or Header  |  1996-04-25  |  897b  |  39 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly,
  4.  Kai Uwe Rommel, Onno van der Linden, Igor Mandrichenko, Paul Kienitz and
  5.  John Bush.
  6.  Permission is granted to any individual or institution to use, copy, or
  7.  redistribute this software so long as all of the original files are included,
  8.  that it is not sold for profit, and that this copyright notice is retained.
  9.  
  10. */
  11.  
  12. #define NO_UNISTD_H
  13. #define NO_MKTIME
  14.  
  15. /* default to MEDIUM_MEM, but allow makefile override */
  16. #if ( (!defined(BIG_MEM)) && (!defined(SMALL_MEM)))
  17. #  define MEDIUM_MEM
  18. #endif
  19.  
  20. #if defined(LATTICE) || defined(__SASC)
  21. #  include <sys/types.h>
  22. #  include <sys/stat.h>
  23.    extern int isatty(int);
  24. #endif
  25.  
  26. #ifdef AZTEC_C
  27. #  include <fcntl.h>
  28. #  include "amiga/z-stat.h"
  29. #  define NO_RMDIR
  30. #  define NO_SYS_TYPES_H
  31. #endif
  32.  
  33. char *GetComment(char *);
  34.  
  35.  
  36. #define FOPR "rb"
  37. #define FOPM "rb+"
  38. #define FOPW "wb"
  39.