39 int mknod(
const char *pathname, mode_t mode, dev_t dev);
47 int mkfifo(
const char *pathname, mode_t mode);
int mkfifo(const char *pathname, mode_t mode)
Makes a FIFO special file with name pathname.
Definition: file.c:110
int fstat(int fd, struct stat *statbuf)
Return information about a file, in the buffer pointed to by statbuf.
Definition: file.c:80
int mknod(const char *pathname, mode_t mode, dev_t dev)
Create a filesystem node (file, device special file, or named pipe) named pathname,...
Definition: file.c:105