shithub: riscv

ref: 5e370061e07ff96868ead6138fa552f6c3a5c4bd
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);
}