Welcome to mirror list, hosted at ThFree Co, Russian Federation.

creat.c « d10v « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62ec5ead8d83804306a1e1b75447ea112451a993 (plain)
1
2
3
4
5
6
7
int
creat(path, mode)
     const char *path;
     int mode;
{
  return _creat (path, mode);
}