shithub: front

ref: 9a853e0d792a1e7fe218b43d373ea2760e3a2d34
dir: /sys/src/ape/lib/9/mount.c/

View raw version
#include <lib9.h>

extern	int	_MOUNT(int, int, char*, int, char*);

int
mount(int fd, int afd, char *old, int flag, char *aname)
{
	return _MOUNT(fd, afd, old, flag, aname);
}