Remove "[Add new features here]" for 2.27
[glibc.git] / include / mntent.h
blob169210fc6602efe6eabb177cc3d51f1a4f0f6ee0
1 #ifndef _MNTENT_H
2 #include <misc/mntent.h>
4 # ifndef _ISOMAC
6 /* Now define the internal interfaces. */
7 extern FILE *__setmntent (const char *__file, const char *__mode);
8 extern struct mntent *__getmntent_r (FILE *__stream,
9 struct mntent *__result,
10 char *__buffer, int __bufsize);
11 extern int __addmntent (FILE *__stream, const struct mntent *__mnt);
12 extern int __endmntent (FILE *__stream);
13 extern char *__hasmntopt (const struct mntent *__mnt, const char *__opt);
15 libc_hidden_proto (__setmntent)
16 libc_hidden_proto (__getmntent_r)
17 libc_hidden_proto (__endmntent)
19 # endif /* !_ISOMAC */
20 #endif