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