aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/mknodat.c
blob: 4956a6af581da84ccc578599fe07f053984ed48d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2016 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * 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;
 * }
 */