hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame include/mntent.h

Packit 6c4009
#ifndef _MNTENT_H
Packit 6c4009
#include <misc/mntent.h>
Packit 6c4009
Packit 6c4009
# ifndef _ISOMAC
Packit 6c4009
Packit 6c4009
/* Now define the internal interfaces.  */
Packit 6c4009
extern FILE *__setmntent (const char *__file, const char *__mode);
Packit 6c4009
extern struct mntent *__getmntent_r (FILE *__stream,
Packit 6c4009
				     struct mntent *__result,
Packit 6c4009
				     char *__buffer, int __bufsize);
Packit 6c4009
extern int __addmntent (FILE *__stream, const struct mntent *__mnt);
Packit 6c4009
extern int __endmntent (FILE *__stream);
Packit 6c4009
extern char *__hasmntopt (const struct mntent *__mnt, const char *__opt);
Packit 6c4009
Packit 6c4009
libc_hidden_proto (__setmntent)
Packit 6c4009
libc_hidden_proto (__getmntent_r)
Packit 6c4009
libc_hidden_proto (__endmntent)
Packit 6c4009
libc_hidden_proto (__hasmntopt)
Packit 6c4009
Packit 6c4009
# endif /* !_ISOMAC */
Packit 6c4009
#endif