home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / tex / texsrc1 / Src / lib / h / c-unistd < prev    next >
Text File  |  1993-05-01  |  1KB  |  55 lines

  1. /* c-unistd.h: ensure we have constants from <unistd.h>.  Included from
  2.    c-std.h.
  3.  
  4. Copyright (C) 1992 Free Software Foundation, Inc.
  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; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #ifndef C_UNISTD_H
  21. #define C_UNISTD_H
  22.  
  23. #ifdef HAVE_UNISTD_H
  24. #include <unistd.h>
  25. #endif
  26.  
  27. #include "c-std.h"
  28.  
  29. /* For fseek.  */
  30. #ifndef SEEK_SET
  31. #define SEEK_SET 0
  32. #define SEEK_CUR 1
  33. #define SEEK_END 2
  34. #endif /* not SEEK_SET */
  35.  
  36. #ifdef RISCOS /* don't have access */
  37. /* For access.  */
  38. #ifndef F_OK
  39. #define F_OK 0
  40. #define X_OK 1
  41. #define W_OK 2
  42. #define R_OK 4
  43. #endif /* not F_OK */
  44. #endif /* RISC OS */
  45.  
  46. #ifndef RISCOS /* don't know what this is used for */
  47. #ifndef STDIN_FILENO
  48. #define STDIN_FILENO    0
  49. #define STDOUT_FILENO   1
  50. #define STDERR_FILENO   2
  51. #endif /* not STDIN_FILENO */
  52. #endif /* RISC OS */
  53.  
  54. #endif /* not C_UNISTD_H */
  55.