Document use of CC and CFLAGS in more detail (bug 20980, bug 21234).
[glibc.git] / include / mntent.h
bloba16298ed6e061b0ce7e6258b4bd928a73a741bb1
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)
18 libc_hidden_proto (__hasmntopt)
20 # endif /* !_ISOMAC */
21 #endif