Subversion Repositories Kolibri OS

Rev

Rev 6591 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <syscall.h>
  2.  
  3. int create_file(const char *path)
  4. {
  5.     int err=0;
  6.     ksys70_t k;
  7.     k.p00 = 2;
  8.     k.p12 = 0;
  9.     k.p20 = 0;
  10.     k.p21 = path;
  11.     return FS_Service(&k, &err);
  12. };
  13.