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

	rc = wrap___xmknodat(_MKNOD_VER, dirfd, path, mode, &dev);

/*	return rc;
 * }
 */