1 #ifndef _MNTENT_H 2 #include <misc/mntent.h> 3 4 # ifndef _ISOMAC 5 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); 14 15 libc_hidden_proto (__setmntent) 16 libc_hidden_proto (__getmntent_r) 17 libc_hidden_proto (__endmntent) 18 libc_hidden_proto (__hasmntopt) 19 20 # endif /* !_ISOMAC */ 21 #endif 22