home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6574.LZX / include / unistd.h < prev   
Encoding:
C/C++ Source or Header  |  1997-04-04  |  284 b   |  19 lines

  1. /* Copyright (c) 1993 SAS Institute, Inc, Cary, NC, USA */
  2. /* All Rights Reserved */
  3.  
  4. #ifndef __UNISTD_H
  5. #define __UNISTD_H
  6.  
  7. #ifndef _DOS_H
  8. #include <dos.h>
  9. #endif
  10.  
  11. #ifndef _FCNTL_H
  12. #include <fcntl.h>
  13. #endif
  14.  
  15. char *mktemp(char *template_arg);
  16. int mkstemp(char *template_arg);
  17.  
  18. #endif
  19.