summaryrefslogtreecommitdiff
path: root/newlib/libc/sys/d10v/creat.c
blob: 62ec5ead8d83804306a1e1b75447ea112451a993 (plain)
1
2
3
4
5
6
7
int
creat(path, mode)
     const char *path;
     int mode;
{
  return _creat (path, mode);
}