aboutsummaryrefslogtreecommitdiff
path: root/umask.c
blob: d42258a9618de4ee17ee24a9b3475ba0380bf90a (plain)
1
2
3
4
5
6
7
8
#include "defs.h"

SYS_FUNC(umask)
{
	print_numeric_umode_t(tcp->u_arg[0]);

	return RVAL_DECODED | RVAL_OCTAL;
}