aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/sys/sh/creat.c
blob: 5cce6d06534f66a2c06f8d517010199f23903f84 (plain)
1
2
3
4
5
6
7
8
extern int
_creat (const char *path, int mode);

int
creat (const char *path, int mode)
{
  return _creat (path, mode);
}