home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / libio / linux.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-10  |  737 b   |  33 lines

  1. #ifndef _CONFIG_LINUX_H
  2. #define  _CONFIG_LINUX_H
  3.  
  4. #undef _STDIO_USES_IOSTREAM
  5. #define _STDIO_USES_IOSTREAM     1
  6.  
  7. #undef _IO_HAVE_ST_BLKSIZE
  8. #define _IO_HAVE_ST_BLKSIZE    1
  9.  
  10. #undef _IO_DEBUG
  11. #define _IO_DEBUG
  12.  
  13. #define _IO_open    __open
  14. #define _IO_close    __close
  15. #define    _IO_fork    __fork
  16. #define    _IO_fcntl    __fcntl
  17. #define _IO__exit    _exit
  18. #define _IO_read    __read
  19. #define _IO_write    __write
  20. #define _IO_lseek    __lseek
  21. #define    _IO_getdtablesize    __getdtablesize
  22. #define _IO_pipe    __pipe
  23. #define _IO_dup2    __dup2
  24. #define _IO_execl    execl
  25. #define _IO_waitpid    __waitpid
  26. #define _IO_stat        __stat
  27. #define _IO_getpid      __getpid
  28. #define _IO_geteuid     __geteuid
  29. #define _IO_getegid     __getegid
  30. #define _IO_fstat    __fstat
  31.  
  32. #endif /* _CONFIG_LINUX_H */
  33.