1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* $NetBSD: compat_mount.c,v 1.2 2007/07/18 20:10:47 dsl Exp $ */
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: compat_mount.c,v 1.2 2007/07/18 20:10:47 dsl Exp $");
#endif /* LIBC_SCCS and not lint */
#define __LIBC12_SOURCE__
#include <sys/types.h>
#include <sys/mount.h>
__warn_references(mount,
"warning: reference to compatibility mount(); include <sys/mount.h> to generate correct reference")
int mount(const char *, const char *, int, void *);
int __mount50(const char *, const char *, int, void *, size_t);
/*
* Convert old mount() call to new calling convention
* The kernel will treat length 0 as 'default for the fs'.
* We need to throw away the +ve response for MNT_GETARGS.
*/
int
mount(const char *type, const char *dir, int flags, void *data)
{
return __mount50(type, dir, flags, data, 0) == -1 ? -1 : 0;
}
|