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

	rc = real_mknod(path, mode, dev);

/*	return rc;
 * }
 */