aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mknod.c
blob: aff3a0b2ed8bd2b98e53f0dd87fb8968f828a543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2011,2014 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int mknod(const char *path, mode_t mode, dev_t dev)
 *	int rc = -1;
 */

	rc = wrap_mknodat(AT_FDCWD, path, mode, dev);

/*	return rc;
 * }
 */