blob: 04eb8c5f9e5d9b43760d0ae22006fe1c3267505c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
/*
* No such concept in plan9, but supposed to be always successful
*/
mode_t
umask(mode_t)
{
return 0;
}
|