home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / h / sys.file.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-18  |  670 b   |  48 lines

  1. /* sys.file.h - system independent sys/file.h */
  2.  
  3. /* 
  4.  * $Header: /xtel/pp/pp-beta/h/RCS/sys.file.h,v 6.0 1991/12/18 20:42:44 jpo Rel $
  5.  *
  6.  *
  7.  * $Log: sys.file.h,v $
  8.  * Revision 6.0  1991/12/18  20:42:44  jpo
  9.  * Release 6.0
  10.  *
  11.  *
  12.  */
  13.  
  14. #ifndef _PP_SYS_FILE_H
  15. #define _PP_SYS_FILE_H
  16.  
  17. #if ISODE > 68
  18.  
  19. #include <isode/sys.file.h>
  20.  
  21. #else 
  22.  
  23. #include <isode/general.h>
  24. #include "util.h"
  25.  
  26. /* Beware the ordering is important to aviod symbol clashes */
  27.  
  28. #ifndef SVR4_UCB
  29. #include <sys/ioctl.h>
  30. #endif
  31.  
  32. #ifdef  BSD42
  33. #include <sys/file.h>
  34. #else    
  35. #ifdef  SYS5
  36. #include <fcntl.h>
  37. #else
  38. #include <sys/fcntl.h>
  39. #endif
  40. #endif
  41.  
  42. #ifdef SYS5
  43. #include <termio.h>
  44. #endif
  45.  
  46. #endif 
  47. #endif
  48.