unixstd.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)unixstd.h 1.3 98/10/09 Copyright 1996 J. Schilling */
  2. /*
  3.  * Definitions for unix system interface
  4.  *
  5.  * Copyright (c) 1996 J. Schilling
  6.  */
  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; see the file COPYING.  If not, write to
  20.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22. #ifndef _UNIXSTD_H
  23. #define _UNIXSTD_H
  24. #ifndef _MCONFIG_H
  25. #include <mconfig.h>
  26. #endif
  27. #ifdef HAVE_UNISTD_H
  28. #include <unistd.h>
  29. #ifndef _SC_PAGESIZE
  30. #ifdef _SC_PAGE_SIZE /* HP/UX & OSF */
  31. #define _SC_PAGESIZE _SC_PAGE_SIZE
  32. #endif
  33. #endif
  34. #else /* HAVE_UNISTD_H */
  35. #endif /* HAVE_UNISTD_H */
  36. #ifndef STDIN_FILENO
  37. # ifdef JOS
  38. # include <jos_io.h>
  39. # else
  40. # define STDIN_FILENO 0
  41. # define STDOUT_FILENO 1
  42. # define STDERR_FILENO 2
  43. # endif
  44. #endif
  45. #ifndef R_OK
  46. /* Symbolic constants for the "access" routine: */
  47. #define R_OK 4 /* Test for Read permission */
  48. #define W_OK 2 /* Test for Write permission */
  49. #define X_OK 1 /* Test for eXecute permission */
  50. #define F_OK 0 /* Test for existence of File */
  51. #endif
  52. /* Symbolic constants for the "lseek" routine: */
  53. #ifndef SEEK_SET
  54. #define SEEK_SET 0 /* Set file pointer to "offset" */
  55. #endif
  56. #ifndef SEEK_CUR
  57. #define SEEK_CUR 1 /* Set file pointer to current plus "offset" */
  58. #endif
  59. #ifndef SEEK_END
  60. #define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
  61. #endif
  62. #endif /* _UNIXSTD_H */