home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / compiler / clib / include / unistd.h < prev   
Encoding:
C/C++ Source or Header  |  1997-01-15  |  491 b   |  21 lines

  1. #ifndef _UNISTD_H
  2. #define _UNISTD_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: unistd.h,v 1.1 1997/01/15 17:48:50 digulla Exp $
  7.  
  8.     Desc: ANSI-C header file unistd.h
  9.     Lang: english
  10. */
  11. #include <sys/types.h>
  12.  
  13. /* Prototypes */
  14. int open (const char * filename, int flags, ...);
  15. int creat (const char * filename, int mode);
  16. ssize_t read (int fd, void * buf, size_t count);
  17. ssize_t write (int fd, const void * buf, size_t count);
  18. int close (int fd);
  19.  
  20. #endif /* _UNISTD_H */
  21.