NAME
	mkdir - make a directory

SYNOPSIS
	int mkdir(string pathname)

DESCRIPTION
	Makes a directory with the pathname 'pathname'. If it returns 1 then
	the directory was successfully created.

	If it fails 0 is returned.

SEE ALSO
	rmdir


