__xmknod

Name

__xmknod -- make block or character special file

Synopsis

int __xmknod(int ver, const char * path, mode_t mode, dev_t * dev);

Description

The __xmknod() function shall implement the mknod() interface from ISO POSIX (2003).

The value of ver shall be 1 or the behavior of __xmknod() is undefined.

__xmknod(1, path, mode, dev) shall behave as mknod(path, mode, dev) as specified by ISO POSIX (2003).

The __xmknod() function is not in the source standard; it is only in the binary standard.

Note: The mknod() function is not in the binary standard; it is only in the source standard.