shithub: riscv

ref: 34ae4649cc91bf32cd602558a4e953bc3fb8777a
dir: /sys/src/ape/lib/ap/plan9/umask.c/

View raw version
#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 numask)
{
	return 0;
}