1#ifndef _MNTENT_H
2#include <misc/mntent.h>
3
4# ifndef _ISOMAC
5
6/* Now define the internal interfaces. */
7extern FILE *__setmntent (const char *__file, const char *__mode);
8extern struct mntent *__getmntent_r (FILE *__stream,
9 struct mntent *__result,
10 char *__buffer, int __bufsize);
11extern int __addmntent (FILE *__stream, const struct mntent *__mnt);
12extern int __endmntent (FILE *__stream);
13extern char *__hasmntopt (const struct mntent *__mnt, const char *__opt);
14
15libc_hidden_proto (__setmntent)
16libc_hidden_proto (__getmntent_r)
17libc_hidden_proto (__endmntent)
18libc_hidden_proto (__hasmntopt)
19
20# endif /* !_ISOMAC */
21#endif
22