home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / stdcpp / test / opentest.c < prev   
C/C++ Source or Header  |  2000-01-15  |  259b  |  19 lines

  1. #include <stdio.h>
  2. #include <io.h>
  3. #include <fcntl.h>
  4. #include <sys/types.h>
  5. #include <sys/stat.h>
  6.  
  7. int main(void)
  8. {
  9.   int h;
  10.  
  11.   h = open ("test", O_WRONLY | O_CREAT | O_BINARY, 0644);
  12.  
  13.   printf ("\n %i \n", h);
  14.  
  15.   close (h);
  16.  
  17.   return 0;
  18. }
  19.