/* fake mknod -- this always fails */

#include <errno.h>

int
mknod(path, mode, dev)
	char *path;
	int mode, dev;
{
	errno = EINVAL;
	return -1;
}
