⛏️ index : haiku.git

/*
** Copyright 2002-2004, Axel DΓΆrfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the MIT License.
*/


#if 0

#include <errno.h>
#include <sys/types.h>

#include <errno_private.h>


int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len);
int unmount(const char *path);

int
mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len)
{
	__set_errno(EOPNOTSUPP);
	return -1;
}


int
unmount(const char *path)
{
	__set_errno(EOPNOTSUPP);
	return -1;
}

#endif