aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/umask.c
blob: df1fbb36ed2075810aebc30fbac2cbf505566961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * mode_t umask(mode_t mask)
 *	mode_t rc = 0;
 */

	pseudo_umask = mask;
	rc = real_umask(mask);

/*	return rc;
 * }
 */