Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
bwh
/
klibc
/
201dabf78546ca712d3541670a5d898dc199854e
/
.
/
usr
/
klibc
/
setmntent.c
blob: d23e14181589a96ab96e4ec1337d1db33d67147f [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<mntent.h>
FILE
*
setmntent
(
const
char
*
filename
,
const
char
*
type
)
{
return
fopen
(
filename
,
type
);
}