Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
#include 
2
 
3
int
4
creat(const char *path, mode_t mode)
5
{
6
  return open(path, O_WRONLY|O_CREAT|O_TRUNC, mode);
7
}